From: Matthias Bolte Date: Fri, 17 May 2013 20:54:35 +0000 (+0200) Subject: vmware: Restore OOM error reporting in vmwareCopyVMXFileName X-Git-Tag: v1.0.6-rc1~106 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=63a2e0b295a6417978ae6ad06366d3f08e145ff4;p=thirdparty%2Flibvirt.git vmware: Restore OOM error reporting in vmwareCopyVMXFileName Got lost in commit e6ab10098066dd04794ff2ee5d10bc9b1db93327. --- diff --git a/src/vmware/vmware_conf.c b/src/vmware/vmware_conf.c index 4b61a9cad0..6c241870e4 100644 --- a/src/vmware/vmware_conf.c +++ b/src/vmware/vmware_conf.c @@ -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; }