提交 ee0d7552 编写于 作者: C Cole Robinson

Fix a few 'used uninitialized' warnings.

上级 7afe94e7
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> Wed May 13 18:06:17 CEST 2009 Daniel Veillard <veillard@redhat.com>
* src/buf.c: avoid an XML attribute escaping bug #499791 * src/buf.c: avoid an XML attribute escaping bug #499791
......
...@@ -4096,9 +4096,9 @@ cleanup: ...@@ -4096,9 +4096,9 @@ cleanup:
static xmlChar * static xmlChar *
makeCloneXML(char *origxml, char *newname) { makeCloneXML(char *origxml, char *newname) {
xmlDocPtr doc; xmlDocPtr doc = NULL;
xmlXPathContextPtr ctxt; xmlXPathContextPtr ctxt = NULL;
xmlXPathObjectPtr obj; xmlXPathObjectPtr obj = NULL;
xmlChar *newxml = NULL; xmlChar *newxml = NULL;
int size; int size;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册