diff options
| -rw-r--r-- | xlators/storage/posix/src/posix.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/xlators/storage/posix/src/posix.c b/xlators/storage/posix/src/posix.c index 9e23c4b72..d24e70cbd 100644 --- a/xlators/storage/posix/src/posix.c +++ b/xlators/storage/posix/src/posix.c @@ -3229,14 +3229,14 @@ do_xattrop (call_frame_t *frame, xlator_t *this, loc_t *loc, fd_t *fd,                          case GF_XATTROP_OR_ARRAY:                                  __or_array ((int32_t *) array, -                                            (int32_t *) trav->value->data, -                                            trav->value->len / 4); +                                            (int32_t *) v->data, +                                            v->len / 4);                                  break;                          case GF_XATTROP_AND_ARRAY:                                  __and_array ((int32_t *) array, -                                             (int32_t *) trav->value->data, -                                             trav->value->len / 4); +                                             (int32_t *) v->data, +                                             v->len / 4);                                  break;                          default:  | 
