]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
virPCIDeviceBindToStub: Remove unused @oldDriverPath and @oldDriverName
authorMichal Privoznik <mprivozn@redhat.com>
Wed, 13 Nov 2013 13:18:09 +0000 (14:18 +0100)
committerMichal Privoznik <mprivozn@redhat.com>
Thu, 14 Nov 2013 16:44:20 +0000 (17:44 +0100)
These two chunks had to be part of df4283a55bf. But for some unclear
reason, the weren't. Anyway, these two variables are not used anywhere
within function. They're initialized to NULL and then VIR_FREE()-d. And
there's no reason do do two NOPs, right?

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
src/util/virpci.c

index a41a22b6647b600167e2f12bcc946663172c0c65..8a3a4921366c73c5dcea9fa2e82a98f5f4ecfb31 100644 (file)
@@ -1085,8 +1085,6 @@ virPCIDeviceBindToStub(virPCIDevicePtr dev,
 
     char *stubDriverPath = NULL;
     char *driverLink = NULL;
-    char *oldDriverPath = NULL;
-    char *oldDriverName = NULL;
     char *path = NULL; /* reused for different purposes */
     const char *newDriverName = NULL;
 
@@ -1217,8 +1215,6 @@ remove_id:
 cleanup:
     VIR_FREE(stubDriverPath);
     VIR_FREE(driverLink);
-    VIR_FREE(oldDriverPath);
-    VIR_FREE(oldDriverName);
     VIR_FREE(path);
 
     if (newDriverName &&