From: Tilghman Lesher Date: Wed, 17 Jan 2007 20:52:21 +0000 (+0000) Subject: When ast_strip_quoted was called with a zero-length string, it would treat a X-Git-Tag: 1.2.15~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0fad242a191ad95ab896b14b14da25b7d0b542b4;p=thirdparty%2Fasterisk.git When ast_strip_quoted was called with a zero-length string, it would treat a NULL as if it were the quoting character (and would thus return the string in memory immediately following the passed-in string). git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@51194 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/utils.c b/utils.c index e712ebe665..6b3680b8fa 100644 --- a/utils.c +++ b/utils.c @@ -520,7 +520,7 @@ char *ast_strip_quoted(char *s, const char *beg_quotes, const char *end_quotes) char *q; s = ast_strip(s); - if ((q = strchr(beg_quotes, *s))) { + if ((q = strchr(beg_quotes, *s)) && *q != '\0') { e = s + strlen(s) - 1; if (*e == *(end_quotes + (q - beg_quotes))) { s++;