From: Sean Bright Date: Thu, 5 May 2011 02:25:20 +0000 (+0000) Subject: Look at the correct buffer for our digest info instead of an empty one. X-Git-Tag: 1.8.5-rc1~11^2~168 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9751ce84fc6d00a111ed0eb2537ac83f62005bf5;p=thirdparty%2Fasterisk.git Look at the correct buffer for our digest info instead of an empty one. (issue #18598) Reported by: ksn git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@316918 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/utils.c b/main/utils.c index 25e6a7ec1b..bd6805b16d 100644 --- a/main/utils.c +++ b/main/utils.c @@ -1958,7 +1958,7 @@ int ast_utils_init(void) */ int ast_parse_digest(const char *digest, struct ast_http_digest *d, int request, int pedantic) { int i; - char *c, key[512], val[512], tmp[512]; + char *c, key[512], val[512]; struct ast_str *str = ast_str_create(16); if (ast_strlen_zero(digest) || !d || !str) { @@ -1970,7 +1970,7 @@ int ast_parse_digest(const char *digest, struct ast_http_digest *d, int request, c = ast_skip_blanks(ast_str_buffer(str)); - if (strncasecmp(tmp, "Digest ", strlen("Digest "))) { + if (strncasecmp(c, "Digest ", strlen("Digest "))) { ast_log(LOG_WARNING, "Missing Digest.\n"); ast_free(str); return -1;