From: Ian Campbell Date: Wed, 17 Feb 2016 14:04:15 +0000 (+0000) Subject: xl: create: close restore_fd_to_close on error X-Git-Tag: 4.7.0-rc1~540 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=1a4c97d0403af834eb35c94b01ec73c48a0badb3;p=xen.git xl: create: close restore_fd_to_close on error Currently the fd is opened and then later closed and restore_fd_to_close set back to -1, however there are several goto out and goto error_out paths in the interim. Since the code resets restore_fd_to_close to -1 it is OK to check this and close on the out path too. CID: 1055897 Signed-off-by: Ian Campbell Acked-by: Ian Jackson --- diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 2271e757c1..f40af51779 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -3063,6 +3063,13 @@ error_out: } out: + if (restore_fd_to_close >= 0) { + if (close(restore_fd_to_close)) + fprintf(stderr, "Failed to close restoring file, fd %d, errno %d\n", + restore_fd_to_close, errno); + restore_fd_to_close = -1; + } + if (logfile != 2) close(logfile);