Issue #6654: Enum crash on ADDRESS record, possibly bad record, but still a crash (imported from 1.2)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17490 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Olle Johansson 2006-04-05 06:52:41 +00:00
parent a62aea97c6
commit 4b27966e71
2 changed files with 4 additions and 2 deletions

View File

@ -13,6 +13,8 @@ Telesthetic - for supporting SIP development
Christos Ricudis - for substantial code contributions
nic.at - ENUM support in Asterisk
Paul Bagyenda, Digital Solutions - for initial Voicetronix driver development
=== WISHLIST CONTRIBUTERS ===

4
enum.c
View File

@ -99,8 +99,8 @@ static int parse_ie(char *data, int maxdatalen, char *src, int srclen)
len = olen = (int)src[0];
src++;
srclen--;
if (len > srclen) {
ast_log(LOG_WARNING, "Want %d, got %d\n", len, srclen);
if (len > srclen || len < 0 ) {
ast_log(LOG_WARNING, "ENUM parsing failed: Wanted %d characters, got %d\n", len, srclen);
return -1;
}
if (len > maxdatalen)