summaryrefslogtreecommitdiff
path: root/callerid.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-01-21 20:20:06 +0000
committerRussell Bryant <russell@russellbryant.com>2006-01-21 20:20:06 +0000
commite040a10d819559c05dcacf437515d7a6aae59f85 (patch)
tree9d40c6f14cd1fe15a10ee44dc26019c903d70ff6 /callerid.c
parent9fd274644226985ad42227e4128c146b8f21da3b (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: https://origsvn.digium.com/svn/asterisk/trunk@8401 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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);