diff options
| author | Anand V. Avati <avati@dev.gluster.com> | 2009-06-15 02:58:36 -0700 | 
|---|---|---|
| committer | Anand V. Avati <avati@dev.gluster.com> | 2009-06-15 02:58:36 -0700 | 
| commit | c3cf6a57c0b241fa768a57ee2fb294196d03f4a0 (patch) | |
| tree | 8a837067f1efe539b497d7fd3efec2119281ffe4 | |
| parent | 65f52bfa965bcffca1157a3ce0711133dc28161b (diff) | |
io-cache: fix warning by initializing conf = NULL
| -rw-r--r-- | xlators/performance/io-cache/src/io-cache.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/performance/io-cache/src/io-cache.c b/xlators/performance/io-cache/src/io-cache.c index b11d37289..99be457a5 100644 --- a/xlators/performance/io-cache/src/io-cache.c +++ b/xlators/performance/io-cache/src/io-cache.c @@ -1423,7 +1423,7 @@ out:  int32_t   init (xlator_t *this)  { -	ioc_table_t *table; +	ioc_table_t *table = NULL;  	dict_t      *options = this->options;  	uint32_t    index = 0;  	char        *cache_size_string = NULL;  | 
