[libvirt] [PATCH] Fix pool define crash

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



There's a null dereference in the storage driver when defining a pool.
Attached patch fixes it for me.

Thanks,
Cole
diff --git a/src/storage_driver.c b/src/storage_driver.c
index 2432a9a..ac5e443 100644
--- a/src/storage_driver.c
+++ b/src/storage_driver.c
@@ -546,7 +546,7 @@ storagePoolDefine(virConnectPtr conn,
         goto cleanup;
     def = NULL;
 
-    if (virStoragePoolObjSaveDef(conn, driver, pool, def) < 0) {
+    if (virStoragePoolObjSaveDef(conn, driver, pool, pool->def) < 0) {
         virStoragePoolObjRemove(&driver->pools, pool);
         goto cleanup;
     }
--
Libvir-list mailing list
Libvir-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/libvir-list

[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]     [Fedora Tools]