]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
vmware: Restore OOM error reporting in vmwareCopyVMXFileName
authorMatthias Bolte <matthias.bolte@googlemail.com>
Fri, 17 May 2013 20:54:35 +0000 (22:54 +0200)
committerMatthias Bolte <matthias.bolte@googlemail.com>
Mon, 20 May 2013 22:19:10 +0000 (00:19 +0200)
Got lost in commit e6ab10098066dd04794ff2ee5d10bc9b1db93327.

src/vmware/vmware_conf.c

index 4b61a9cad0fc084dbcf08901f309f977aa0ce6d9..6c241870e4b08977eb6045112d869a86ca5037a9 100644 (file)
@@ -490,6 +490,6 @@ vmwareCopyVMXFileName(const char *datastorePath, void *opaque ATTRIBUTE_UNUSED)
 {
     char *path;
 
-    ignore_value(VIR_STRDUP_QUIET(path, datastorePath));
+    ignore_value(VIR_STRDUP(path, datastorePath));
     return path;
 }