diff options
Diffstat (limited to 'xlators/performance/quick-read')
-rw-r--r-- | xlators/performance/quick-read/src/quick-read.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/xlators/performance/quick-read/src/quick-read.c b/xlators/performance/quick-read/src/quick-read.c index 54367a3fd75..2c54b559e7c 100644 --- a/xlators/performance/quick-read/src/quick-read.c +++ b/xlators/performance/quick-read/src/quick-read.c @@ -344,10 +344,7 @@ qr_open_cbk (call_frame_t *frame, void *cookie, xlator_t *this, int32_t op_ret, char is_open = 0; local = frame->local; - if (local == NULL) { - op_ret = -1; - op_errno = EINVAL; - } else { + if (local != NULL) { local->op_ret = op_ret; local->op_errno = op_errno; is_open = local->is_open; |