]> git.ipfire.org Git - thirdparty/qemu.git/commit
slirp: fork_exec(): Don't close() a negative number in fork_exec()
authorPeter Maydell <peter.maydell@linaro.org>
Sun, 9 Jul 2017 17:54:22 +0000 (18:54 +0100)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Sat, 15 Jul 2017 12:28:25 +0000 (14:28 +0200)
commit12dccfe4f57ead8166567ec8a60d2ce91e266f04
tree8b6d6ca19237f9d1e1217e4f15a8200257a2b68a
parente88718fc0b0399147327adfb369793407482a895
slirp: fork_exec(): Don't close() a negative number in fork_exec()

In a fork_exec() error path we try to closesocket(s) when s might
be a negative number because the thing that failed was the
qemu_socket() call. Add a guard so we don't do this.

(Spotted by Coverity: CID 1005727 issue 1 of 2.)

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
slirp/misc.c