From eb5d461ed4688cafadc76bebf329a2fae454dc12 Mon Sep 17 00:00:00 2001 From: tilghman Date: Wed, 6 Jun 2007 21:20:11 +0000 Subject: Issue 9869 - replace malloc and memset with ast_calloc, and other coding guidelines changes git-svn-id: http://svn.digium.com/svn/asterisk/trunk@67864 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_alarmreceiver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/app_alarmreceiver.c') diff --git a/apps/app_alarmreceiver.c b/apps/app_alarmreceiver.c index e74a7b46a..56f604f27 100644 --- a/apps/app_alarmreceiver.c +++ b/apps/app_alarmreceiver.c @@ -727,7 +727,7 @@ static int alarmreceiver_exec(struct ast_channel *chan, void *data) for(elp = event_head; (elp != NULL);){ efree = elp; elp = elp->next; - free(efree); + ast_free(efree); } -- cgit v1.2.3