summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavan Sondur <pavan@gluster.com>2010-05-29 16:55:45 +0000
committerAnand V. Avati <avati@dev.gluster.com>2010-05-31 05:39:26 -0700
commit3a557d8ad12cc764127500a183f5cfd0cad22d21 (patch)
tree9e576afe6f68e654985855a052213c4d965a94e6
parentaf5ac6eb2ebace38e301c09d72312d3d432ec8d4 (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
-rw-r--r--xlators/protocol/client/src/client-protocol.c3
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 7ba766271ba..fc1f57e7b2f 100644
--- a/xlators/protocol/client/src/client-protocol.c
+++ b/xlators/protocol/client/src/client-protocol.c
@@ -921,7 +921,8 @@ client_readlink (call_frame_t *frame, xlator_t *this, loc_t *loc, size_t size)
unwind:
if (hdr)
free (hdr);
- STACK_UNWIND (frame, -1, EINVAL, NULL);
+ STACK_UNWIND_STRICT (readlink, frame, -1, EINVAL,
+ NULL, NULL);
return 0;
}