diff options
Diffstat (limited to 'target-ppc/kvm_ppc.c')
-rw-r--r-- | target-ppc/kvm_ppc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/target-ppc/kvm_ppc.c b/target-ppc/kvm_ppc.c index 82c0f42098..10cfdb3cf1 100644 --- a/target-ppc/kvm_ppc.c +++ b/target-ppc/kvm_ppc.c @@ -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); |