diff options
author | Pavan Sondur <pavan@gluster.com> | 2010-05-29 16:09:24 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2010-05-31 05:39:14 -0700 |
commit | 065ac01684dabd4cca4bde3048ef2f13cc2357cb (patch) | |
tree | 94727b49eda60ee8c4b0a0be98c004e4dbc32974 /xlators/protocol/client/src | |
parent | 37495f6c2ee3ce3cf5a68631dc421825c540fbda (diff) |
protocol/client: Add missing argument to readlink unwind call.
Signed-off-by: Pavan Vilas Sondur <pavan@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 967 ()
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=967
Diffstat (limited to 'xlators/protocol/client/src')
-rw-r--r-- | xlators/protocol/client/src/client-protocol.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xlators/protocol/client/src/client-protocol.c b/xlators/protocol/client/src/client-protocol.c index 6c891866c88..446b3a6499d 100644 --- a/xlators/protocol/client/src/client-protocol.c +++ b/xlators/protocol/client/src/client-protocol.c @@ -922,7 +922,8 @@ client_readlink (call_frame_t *frame, xlator_t *this, loc_t *loc, size_t size) unwind: if (hdr) GF_FREE (hdr); - STACK_UNWIND (frame, -1, EINVAL, NULL); + STACK_UNWIND_STRICT (readlink, frame, -1, EINVAL, + NULL, NULL); return 0; } |