summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xlators/performance/write-behind/src/write-behind.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/xlators/performance/write-behind/src/write-behind.c b/xlators/performance/write-behind/src/write-behind.c
index ab149b750..e3a2f24e3 100644
--- a/xlators/performance/write-behind/src/write-behind.c
+++ b/xlators/performance/write-behind/src/write-behind.c
@@ -924,6 +924,8 @@ wb_open_cbk (call_frame_t *frame, void *cookie, xlator_t *this, int32_t op_ret,
LOCK_INIT (&file->lock);
}
+
+ frame->local = NULL;
STACK_UNWIND (frame, op_ret, op_errno, fd);
return 0;
@@ -977,7 +979,9 @@ wb_create_cbk (call_frame_t *frame, void *cookie, xlator_t *this,
LOCK_INIT (&file->lock);
}
-
+
+ frame->local = NULL;
+
STACK_UNWIND (frame, op_ret, op_errno, fd, inode, buf);
return 0;
}