diff options
Diffstat (limited to 'libglusterfs/src/mem-pool.c')
| -rw-r--r-- | libglusterfs/src/mem-pool.c | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/libglusterfs/src/mem-pool.c b/libglusterfs/src/mem-pool.c index 9533a733959..93a1415a75a 100644 --- a/libglusterfs/src/mem-pool.c +++ b/libglusterfs/src/mem-pool.c @@ -318,6 +318,10 @@ __gf_free (void *free_ptr)          {                  mem_acct->rec[header->type].size -= header->size;                  mem_acct->rec[header->type].num_allocs--; +                /* If all the instances are freed up then ensure typestr is set +                 * to NULL */ +                if (!mem_acct->rec[header->type].num_allocs) +                        mem_acct->rec[header->type].typestr = NULL;          }          UNLOCK (&mem_acct->rec[header->type].lock);  | 
