dect
/
asterisk
Archived
13
0
Fork 0

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

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@17490 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
oej 2006-04-05 06:52:41 +00:00
parent df8f2799b6
commit 57e05b7e71
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)