]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
virMdevctlList: Don't check for !output
authorMichal Privoznik <mprivozn@redhat.com>
Thu, 24 Aug 2023 08:08:24 +0000 (10:08 +0200)
committerMichal Privoznik <mprivozn@redhat.com>
Thu, 24 Aug 2023 11:47:16 +0000 (13:47 +0200)
After 'mdevctl' was ran, its stdout is captured in @output which
is then compared against NULL and if it is NULL a negative value
is returned (to indicate error to the caller). But this is
effectively a dead code, because virCommand (specifically
virCommandProcessIO()) makes sure both stdout and stderr buffers
are properly '\0' terminated. Therefore, this can never evaluate
to true. Also, if there really is no output from 'mdevctl' (which
was handled in one of earlier commits, but let just assume it
wasn't), then we should not error out and treat such scenario as
'no mdevs defined/active'.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Kristina Hanicova <khanicov@redhat.com>
src/node_device/node_device_driver.c

index ac50c968379df5da053a44503cd2ccf24904d356..a59cd0875d5239c776a2e64ffa2c60cf976ee30e 100644 (file)
@@ -1650,9 +1650,6 @@ virMdevctlList(bool defined,
         return -1;
     }
 
-    if (!output)
-        return -1;
-
     return nodeDeviceParseMdevctlJSON(output, devs);
 }