uninitialized var

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10921 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2008-12-23 18:17:32 +00:00
parent c071132041
commit 376b42c3a3

View File

@ -307,7 +307,7 @@ SWITCH_DECLARE(switch_xml_t) switch_xml_find_child_multi(switch_xml_t node, cons
const char *vals[256] = {0};
int x, i = 0;
va_list ap;
const char *attrname, *value;
const char *attrname, *value = NULL;
va_start(ap, childname);