mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
powerpc/kvm: Fix a uninitialized bug (Liu Yu)
Signed-off-by: Liu Yu <yu.liu@freescale.com> Acked-by: Hollis Blanchard <hollisb@us.ibm.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6327 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
406b430d48
commit
57be80f948
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ static int kvmppc_read_host_property(const char *node_path, const char *prop,
|
|||
{
|
||||
char *path;
|
||||
FILE *f;
|
||||
int ret;
|
||||
int ret = 0;
|
||||
int pathlen;
|
||||
|
||||
pathlen = snprintf(NULL, 0, "%s/%s/%s", PROC_DEVTREE_PATH, node_path, prop)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue