From: Philippe Mathieu-Daudé Date: Mon, 17 Feb 2020 09:42:38 +0000 (+0100) Subject: tools/virtiofsd/passthrough_ll: Remove unneeded variable assignment X-Git-Tag: v5.0.0-rc0~78^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d4db6f545decdf67be8c4d6ca2bfb5dab99e462b;p=thirdparty%2Fqemu.git tools/virtiofsd/passthrough_ll: Remove unneeded variable assignment Fix warning reported by Clang static code analyzer: CC tools/virtiofsd/passthrough_ll.o tools/virtiofsd/passthrough_ll.c:1083:5: warning: Value stored to 'saverr' is never read saverr = ENOMEM; ^ ~~~~~~ Fixes: 7c6b66027 Reported-by: Clang Static Analyzer Reviewed-by: Ján Tomko Reviewed-by: Dr. David Alan Gilbert Signed-off-by: Philippe Mathieu-Daudé Signed-off-by: Dr. David Alan Gilbert --- diff --git a/tools/virtiofsd/passthrough_ll.c b/tools/virtiofsd/passthrough_ll.c index c635fc88203..e9e71d5fc24 100644 --- a/tools/virtiofsd/passthrough_ll.c +++ b/tools/virtiofsd/passthrough_ll.c @@ -1080,8 +1080,6 @@ static void lo_mknod_symlink(fuse_req_t req, fuse_ino_t parent, return; } - saverr = ENOMEM; - saverr = lo_change_cred(req, &old); if (saverr) { goto out;