summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnand V. Avati <avati@dev.gluster.com>2009-06-15 02:58:36 -0700
committerAnand V. Avati <avati@dev.gluster.com>2009-06-15 02:58:36 -0700
commitc3cf6a57c0b241fa768a57ee2fb294196d03f4a0 (patch)
tree8a837067f1efe539b497d7fd3efec2119281ffe4
parent65f52bfa965bcffca1157a3ce0711133dc28161b (diff)
io-cache: fix warning by initializing conf = NULL
-rw-r--r--xlators/performance/io-cache/src/io-cache.c2
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 b11d3728987..99be457a54c 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;