diff options
| author | Kevin Wolf <kwolf@redhat.com> | 2019-09-10 09:03:06 +0200 |
|---|---|---|
| committer | Kevin Wolf <kwolf@redhat.com> | 2019-09-13 12:18:37 +0200 |
| commit | c8e68b43e11b003a4fcd6d61af448967d7a66631 (patch) | |
| tree | a6e1d52b2f02ac3e31f2575c6567e31c4ab31871 | |
| parent | 4e08bee46709f07e597431a75aa5efec9866bf9f (diff) | |
| download | focaccia-qemu-c8e68b43e11b003a4fcd6d61af448967d7a66631.tar.gz focaccia-qemu-c8e68b43e11b003a4fcd6d61af448967d7a66631.zip | |
qemu-io: Don't leak pattern file in error path
qemu_io_alloc_from_file() needs to close the pattern file even if some error occurred. Setting f = NULL in the success path and checking it for NULL in the error path isn't strictly necessary at this point, but let's do it anyway in case someone later adds a 'goto error' after closing the file. Coverity: CID 1405303 Fixes: 4d731510d34f280ed45a6de621d016f67a49ea48 Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
| -rw-r--r-- | qemu-io-cmds.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qemu-io-cmds.c b/qemu-io-cmds.c index d46fa166d3..349256a5fe 100644 --- a/qemu-io-cmds.c +++ b/qemu-io-cmds.c @@ -401,6 +401,7 @@ static void *qemu_io_alloc_from_file(BlockBackend *blk, size_t len, } fclose(f); + f = NULL; if (len > pattern_len) { len -= pattern_len; @@ -420,6 +421,9 @@ static void *qemu_io_alloc_from_file(BlockBackend *blk, size_t len, error: qemu_io_free(buf_origin); + if (f) { + fclose(f); + } return NULL; } |