aboutsummaryrefslogtreecommitdiffstats
path: root/callerid.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-01-21 20:20:06 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-01-21 20:20:06 +0000
commitb79bdab5ccbca07d025ef91df90959997f23f4b2 (patch)
tree9d40c6f14cd1fe15a10ee44dc26019c903d70ff6 /callerid.c
parent3ac4f666756277f3afb3c7c018a70558ddbff80b (diff)
finish reverting my pass through the tree to remove checks of the result of
ast_strdupa, this one is revision 8362 git-svn-id: http://svn.digium.com/svn/asterisk/trunk@8401 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'callerid.c')
-rw-r--r--callerid.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/callerid.c b/callerid.c
index 92a25e9f2..161f5196d 100644
--- a/callerid.c
+++ b/callerid.c
@@ -996,8 +996,12 @@ int ast_callerid_split(const char *buf, char *name, int namelen, char *num, int
{
char *tmp;
char *l = NULL, *n = NULL;
-
tmp = ast_strdupa(buf);
+ if (!tmp) {
+ name[0] = '\0';
+ num[0] = '\0';
+ return -1;
+ }
ast_callerid_parse(tmp, &n, &l);
if (n)
ast_copy_string(name, n, namelen);