]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FSCORE-537
authorBrian West <brian@freeswitch.org>
Mon, 25 Jan 2010 15:16:43 +0000 (15:16 +0000)
committerBrian West <brian@freeswitch.org>
Mon, 25 Jan 2010 15:16:43 +0000 (15:16 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16514 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_xml.c

index dce72ba71c1639f8ebe42669adb03af04692e120..a66e74706bdd54efba1d0e4a4f0e416fab762d7b 100644 (file)
@@ -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)