]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 233611 via svnmerge from
authorDavid Vossel <dvossel@digium.com>
Mon, 7 Dec 2009 23:30:14 +0000 (23:30 +0000)
committerDavid Vossel <dvossel@digium.com>
Mon, 7 Dec 2009 23:30:14 +0000 (23:30 +0000)
https://origsvn.digium.com/svn/asterisk/trunk

........
  r233611 | dvossel | 2009-12-07 17:28:51 -0600 (Mon, 07 Dec 2009) | 4 lines

  fixes incorrect logic in ast_uri_encode

  issue #16299
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@233614 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/utils.c

index f55fe42714174f81d8300cf5e1ec59b12dec140a..9c92af6d7a372773a10b5afb9a8f49b09b5a368f 100644 (file)
@@ -389,7 +389,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;