ast_calloc, instead of malloc and memset

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35788 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2006-06-24 04:03:52 +00:00
parent 1c17258f4e
commit c7024d8a02
1 changed files with 1 additions and 2 deletions

View File

@ -772,9 +772,8 @@ struct ast_udptl *ast_udptl_new_with_bindaddr(struct sched_context *sched, struc
int i;
long int flags;
if ((udptl = malloc(sizeof(struct ast_udptl))) == NULL)
if (!(udptl = ast_calloc(1, sizeof(*udptl))))
return NULL;
memset(udptl, 0, sizeof(struct ast_udptl));
if (udptlfectype == 2)
udptl->error_correction_scheme = UDPTL_ERROR_CORRECTION_FEC;