From: Brian West Date: Mon, 25 Jan 2010 15:16:43 +0000 (+0000) Subject: FSCORE-537 X-Git-Tag: v1.0.6~597 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e92fd6353976cac923cebae474a96ba0344b823c;p=thirdparty%2Ffreeswitch.git FSCORE-537 git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16514 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/switch_xml.c b/src/switch_xml.c index dce72ba71c..a66e74706b 100644 --- a/src/switch_xml.c +++ b/src/switch_xml.c @@ -490,7 +490,7 @@ static char *switch_xml_decode(char *s, char **ent, char t) } for (s = r;;) { - while (*s && *s != '&' && (*s != '%' || t != '%') && !isspace((int) (*s))) + while (*s && *s != '&' && (*s != '%' || t != '%') && !isspace((unsigned char) (*s))) s++; if (!*s)