diff options
| -rw-r--r-- | xlators/cluster/dht/src/dht-helper.c | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/xlators/cluster/dht/src/dht-helper.c b/xlators/cluster/dht/src/dht-helper.c index a1210f1b273..ad031b6216c 100644 --- a/xlators/cluster/dht/src/dht-helper.c +++ b/xlators/cluster/dht/src/dht-helper.c @@ -1320,6 +1320,9 @@ unlock:          UNLOCK(&inode->lock);  out: +        if (dict) { +                dict_unref (dict); +        }          loc_wipe (&tmp_loc); @@ -1588,6 +1591,10 @@ unlock:          ret = 0;  out: +        if (dict) { +                dict_unref (dict); +        } +          loc_wipe (&tmp_loc);          return ret;  }  | 
