Fix callerid split (bug #3507)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4966 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2005-02-04 17:45:37 +00:00
parent 6345a74c22
commit 1204348efa

View File

@@ -706,9 +706,12 @@ int ast_callerid_split(const char *buf, char *name, int namelen, char *num, int
ast_callerid_parse(tmp, &n, &l);
if (n)
strncpy(name, n, namelen - 1);
else
name[0] = '\0';
if (l) {
ast_shrink_phone_number(l);
strncpy(num, l, numlen - 1);
}
} else
num[0] = '\0';
return 0;
}