mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-10 05:17:59 +03:00
Fix a few 'used uninitialized' warnings.
This commit is contained in:
parent
7afe94e7e2
commit
ee0d7552e2
@ -1,3 +1,7 @@
|
||||
Wed May 13 13:37:02 EDT 2009 Cole Robinson <crobinso@redhat.com>
|
||||
|
||||
* src/virsh.c: Fix a few 'used uninitialized' warnings.
|
||||
|
||||
Wed May 13 18:06:17 CEST 2009 Daniel Veillard <veillard@redhat.com>
|
||||
|
||||
* src/buf.c: avoid an XML attribute escaping bug #499791
|
||||
|
@ -4096,9 +4096,9 @@ cleanup:
|
||||
static xmlChar *
|
||||
makeCloneXML(char *origxml, char *newname) {
|
||||
|
||||
xmlDocPtr doc;
|
||||
xmlXPathContextPtr ctxt;
|
||||
xmlXPathObjectPtr obj;
|
||||
xmlDocPtr doc = NULL;
|
||||
xmlXPathContextPtr ctxt = NULL;
|
||||
xmlXPathObjectPtr obj = NULL;
|
||||
xmlChar *newxml = NULL;
|
||||
int size;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user