From 888fc16db5f0063464bf219a6cf6fee0faea4705 Mon Sep 17 00:00:00 2001 From: Benjamin Kaduk Date: Sun, 22 Nov 2015 13:24:43 -0600 Subject: [PATCH] volser: set error, not code, before rfail The rfail cleanup handler overwrites 'code' ~unconditionally, but does use an existing 'error' value if present. Since the intent is to return failure to the caller, preserve the code in the error variable and do so. FIXES 131897 Change-Id: I25db2f9ad75a5b856626d39d35f97a09f26bd7a9 Reviewed-on: http://gerrit.openafs.org/12108 Reviewed-by: Jeffrey Altman Tested-by: BuildBot --- src/volser/vsprocs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/volser/vsprocs.c b/src/volser/vsprocs.c index cdf7dc8296..c2dfa217ee 100644 --- a/src/volser/vsprocs.c +++ b/src/volser/vsprocs.c @@ -4067,7 +4067,7 @@ UV_ReleaseVolume(afs_uint32 afromvol, afs_uint32 afromserver, code = CheckTrans(fromconn, &fromtid, afrompart, &orig_status); if (code) { - code = ENOENT; + error = ENOENT; goto rfail; }