From: David Vossel Date: Mon, 7 Dec 2009 23:28:51 +0000 (+0000) Subject: fixes incorrect logic in ast_uri_encode X-Git-Tag: 11.0.0-beta1~3755 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e44e6b33b3d6aa2969974d44472e2407c2db3f29;p=thirdparty%2Fasterisk.git fixes incorrect logic in ast_uri_encode issue #16299 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@233611 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/utils.c b/main/utils.c index e0005a6b73..b6f9b51760 100644 --- a/main/utils.c +++ b/main/utils.c @@ -392,7 +392,7 @@ char *ast_uri_encode(const char *string, char *outbuf, int buflen, int doreserve /* If there's no characters to convert, just go through and don't do anything */ while (*ptr) { - if ((*ptr < 32 || (unsigned char) *ptr) > 127 || (doreserved && strchr(reserved, *ptr)) ) { + if ((*ptr < 32) || (doreserved && strchr(reserved, *ptr))) { /* Oops, we need to start working here */ if (!buf) { buf = outbuf;