diff options
Diffstat (limited to 'xlators/performance/write-behind/src/write-behind.c')
-rw-r--r-- | xlators/performance/write-behind/src/write-behind.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/xlators/performance/write-behind/src/write-behind.c b/xlators/performance/write-behind/src/write-behind.c index 4095527d828..d3f24a5909b 100644 --- a/xlators/performance/write-behind/src/write-behind.c +++ b/xlators/performance/write-behind/src/write-behind.c @@ -564,6 +564,7 @@ out: } GF_FREE (local); + local = NULL; } if (iobref != NULL) { @@ -579,10 +580,11 @@ out: * had we winded these requests, we would have unrefed * in wb_sync_cbk. */ - - list_for_each_entry_safe (request, dummy, &local->winds, - winds) { - wb_request_unref (request); + if (local) { + list_for_each_entry_safe (request, dummy, &local->winds, + winds) { + wb_request_unref (request); + } } if (file != NULL) { |