From 3a557d8ad12cc764127500a183f5cfd0cad22d21 Mon Sep 17 00:00:00 2001 From: Pavan Sondur Date: Sat, 29 May 2010 16:55:45 +0000 Subject: protocol/client: Add missing argument to readlink unwind call. Signed-off-by: Pavan Vilas Sondur Signed-off-by: Anand V. Avati BUG: 967 () URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=967 --- xlators/protocol/client/src/client-protocol.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xlators/protocol/client/src/client-protocol.c b/xlators/protocol/client/src/client-protocol.c index 7ba766271..fc1f57e7b 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; } -- cgit