diff options
Diffstat (limited to 'xlators/protocol')
| -rw-r--r-- | xlators/protocol/client/src/client3_1-fops.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/xlators/protocol/client/src/client3_1-fops.c b/xlators/protocol/client/src/client3_1-fops.c index 1129aebc0..e17a650d3 100644 --- a/xlators/protocol/client/src/client3_1-fops.c +++ b/xlators/protocol/client/src/client3_1-fops.c @@ -4638,7 +4638,9 @@ client3_1_getxattr (call_frame_t *frame, xlator_t *this,          }          loc_copy (&local->loc, args->loc); -        local->name = gf_strdup (args->name); +        if (args->name) +                local->name = gf_strdup (args->name); +          frame->local = local;          rsp_iobref = iobref_new ();  | 
