[libvirt] [libvirt-php 2/2] Fix possible uninitialized variable

Lyre liyong at skybility.com
Thu Apr 14 08:50:20 UTC 2011


---
 src/libvirt-php.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/libvirt-php.c b/src/libvirt-php.c
index 020da4e..d436e1c 100644
--- a/src/libvirt-php.c
+++ b/src/libvirt-php.c
@@ -1204,7 +1204,8 @@ char *get_string_from_xpath(char *xml, char *xpath, zval **val, int *retVal)
 	xmlXPathObjectPtr result;
 	xmlNodeSetPtr nodeset;
 	int ret = 0, i;
-	char *value, key[8] = { 0 };
+	char *value = NULL; 
+	char key[8] = { 0 };
 
 	if ((xpath == NULL) || (xml == NULL))
 	{
-- 
1.7.3.4
/




More information about the libvir-list mailing list