]> git.proxmox.com Git - qemu.git/blobdiff - target-ppc/kvm_ppc.c
targets: remove error handling from qemu_malloc() callers (Avi Kivity)
[qemu.git] / target-ppc / kvm_ppc.c
index 82c0f42098238d623a7f069386a68b397e3061dc..10cfdb3cf1ebc77ccbba020e00684dc60ace6e50 100644 (file)
@@ -33,10 +33,6 @@ int kvmppc_read_host_property(const char *node_path, const char *prop,
     pathlen = snprintf(NULL, 0, "%s/%s/%s", PROC_DEVTREE_PATH, node_path, prop)
               + 1;
     path = qemu_malloc(pathlen);
-    if (path == NULL) {
-        ret = -ENOMEM;
-        goto out;
-    }
 
     snprintf(path, pathlen, "%s/%s/%s", PROC_DEVTREE_PATH, node_path, prop);