summaryrefslogtreecommitdiff
path: root/utils/ael_main.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-10-24 01:28:45 +0000
committerRussell Bryant <russell@russellbryant.com>2006-10-24 01:28:45 +0000
commit283b1bdeb31255f864545ddce9ae986ee0754f56 (patch)
treef132b0899f21326a2d02efa0dcf9522ce162cf83 /utils/ael_main.c
parent18b7e4b699db00deabd6ea21025446a06fe4a782 (diff)
Merged revisions 46067 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r46067 | russell | 2006-10-23 21:27:42 -0400 (Mon, 23 Oct 2006) | 7 lines In muted.c, check the return value of strdup. In ael_main.c, check the return value of calloc. (issue #8157) In passing fix a few minor bugs in ael_main.c. The last argument to strncpy() was a hard-coded 100, where it should have been 99. I changed this to use sizeof() - 1. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@46068 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'utils/ael_main.c')
-rw-r--r--utils/ael_main.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/utils/ael_main.c b/utils/ael_main.c
index 225e23b91..606ac8d6a 100644
--- a/utils/ael_main.c
+++ b/utils/ael_main.c
@@ -62,8 +62,10 @@ void destroy_namelist(struct namelist *x)
struct namelist *create_name(char *name);
struct namelist *create_name(char *name)
{
- struct namelist *x = (struct namelist *)calloc(sizeof(struct namelist),1);
- strncpy(x->name,name,100);
+ struct namelist *x = calloc(1, sizeof(*x));
+ if (!x)
+ return NULL;
+ strncpy(x->name, name, sizeof(x->name) - 1);
return x;
}
@@ -253,14 +255,16 @@ void pbx_builtin_setvar(void *chan, void *data)
struct ast_context * ast_context_create(void **extcontexts, const char *name, const char *registrar)
{
- struct ast_context *x = (struct ast_context *)calloc(sizeof(struct ast_context),1);
+ struct ast_context *x = calloc(1, sizeof(*x));
+ if (!x)
+ return NULL;
x->next = context_list;
context_list = x;
- if(!no_comp)
+ if (!no_comp)
printf("Executed ast_context_create(conts, name=%s, registrar=%s);\n", name, registrar);
conts++;
- strncpy(x->name,name,100);
- strncpy(x->registrar,registrar,100);
+ strncpy(x->name, name, sizeof(x->name) - 1);
+ strncpy(x->registrar, registrar, sizeof(x->registrar) - 1);
return x;
}