summaryrefslogtreecommitdiffstats
path: root/xlators/performance/io-cache/src/io-cache.c
diff options
context:
space:
mode:
authorHarshavardhana Ranganath <harsha@gluster.com>2009-12-17 15:43:34 +0000
committerAnand V. Avati <avati@dev.gluster.com>2010-01-23 01:56:53 -0800
commit5f73c75c60841d8173f896b80432286c6458d853 (patch)
treeeef96128324934b70cc59c5b3f76d41ad7a1cd44 /xlators/performance/io-cache/src/io-cache.c
parentdc7448e508fdba87d161be7695a2c449f2cb573d (diff)
Add null pointer checks in "fini"
Signed-off-by: Harshavardhana <harsha@gluster.com> Signed-off-by: Anand V. Avati <avati@dev.gluster.com> BUG: 364 (Segfault in io-cache) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=364
Diffstat (limited to 'xlators/performance/io-cache/src/io-cache.c')
-rw-r--r--xlators/performance/io-cache/src/io-cache.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/xlators/performance/io-cache/src/io-cache.c b/xlators/performance/io-cache/src/io-cache.c
index ba170c338..c3f76b3bd 100644
--- a/xlators/performance/io-cache/src/io-cache.c
+++ b/xlators/performance/io-cache/src/io-cache.c
@@ -1198,6 +1198,9 @@ fini (xlator_t *this)
{
ioc_table_t *table = this->private;
+ if (table == NULL)
+ return;
+
pthread_mutex_destroy (&table->table_lock);
FREE (table);