[libvirt] [PATCHv5 04/28] storage: file: Tolerate NULL src when uninitializing the backend

Peter Krempa pkrempa at redhat.com
Fri Jul 4 11:29:19 UTC 2014


Allow de-init of null storage sources.
---
 src/storage/storage_driver.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/storage/storage_driver.c b/src/storage/storage_driver.c
index 8c0c5d6..ae86c69 100644
--- a/src/storage/storage_driver.c
+++ b/src/storage/storage_driver.c
@@ -2540,7 +2540,7 @@ int storageRegister(void)
 static bool
 virStorageFileIsInitialized(virStorageSourcePtr src)
 {
-    return !!src->drv;
+    return src && src->drv;
 }


-- 
1.9.3




More information about the libvir-list mailing list