]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
rbd: Only close RBD image if it has been opened
authorWido den Hollander <wido@widodh.nl>
Wed, 6 Jan 2016 09:25:48 +0000 (10:25 +0100)
committerJohn Ferlan <jferlan@redhat.com>
Wed, 6 Jan 2016 12:46:17 +0000 (07:46 -0500)
It could be that we error out while the RBD image has not been
opened yet. This would cause us to call rbd_close() on pointer
which has not been initialized.

Set it to NULL by default and only close if it is not NULL.

Signed-off-by: Wido den Hollander <wido@widodh.nl>
src/storage/storage_backend_rbd.c

index 80684eb55a388140ca94dbf6d5794564eda650b5..8e2d51bf94b7b4e23d4e9839600fb56ab88bbfa9 100644 (file)
@@ -281,13 +281,13 @@ static int volStorageBackendRBDRefreshVolInfo(virStorageVolDefPtr vol,
 {
     int ret = -1;
     int r = 0;
-    rbd_image_t image;
+    rbd_image_t image = NULL;
 
     r = rbd_open(ptr->ioctx, vol->name, &image, NULL);
     if (r < 0) {
         virReportSystemError(-r, _("failed to open the RBD image '%s'"),
                              vol->name);
-        return ret;
+        goto cleanup;
     }
 
     rbd_image_info_t info;
@@ -323,7 +323,8 @@ static int volStorageBackendRBDRefreshVolInfo(virStorageVolDefPtr vol,
     ret = 0;
 
  cleanup:
-    rbd_close(image);
+    if (image)
+        rbd_close(image);
     return ret;
 }