mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 11:58:52 +00:00
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
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user