]> xenbits.xensource.com Git - libvirt.git/commitdiff
util: vircommand: fix redundant if
authorDmitry Frolov <frolov@swemel.ru>
Tue, 10 Oct 2023 08:54:14 +0000 (11:54 +0300)
committerMartin Kletzander <mkletzan@redhat.com>
Tue, 10 Oct 2023 10:36:15 +0000 (12:36 +0200)
Comparison "if (ret == -1)" is always false.
This statement was forgotten during switching to g_new0()

Found by Linux Verification Center (linuxtesting.org) with SVACE.

Fixes: 0275b06a55fc7b1ec6a9e93f7fb73bea7388f634 ("util: command: use g_new0")
Signed-off-by: Dmitry Frolov <frolov@swemel.ru>
Reviewed-by: Martin Kletzander <mkletzan@redhat.com>
src/util/vircommand.c

index 9d4ba1e97c829e93bcd148d1890aee42b27e21d7..81e74deee065b89e17c9a88af10f8eee4f1697f0 100644 (file)
@@ -2227,7 +2227,7 @@ virCommandProcessIO(virCommand *cmd)
     int outfd = -1, errfd = -1;
     size_t inlen = 0, outlen = 0, errlen = 0;
     size_t inoff = 0;
-    int ret = 0;
+    int ret = -1;
     g_autofree struct pollfd *fds = NULL;
 
     if (dryRunBuffer || dryRunCallback) {
@@ -2254,9 +2254,6 @@ virCommandProcessIO(virCommand *cmd)
         VIR_FREE(*cmd->errbuf);
         *cmd->errbuf = g_new0(char, 1);
     }
-    if (ret == -1)
-        goto cleanup;
-    ret = -1;
 
     fds = g_new0(struct pollfd, 3 + virCommandGetNumSendBuffers(cmd));