summaryrefslogtreecommitdiff
path: root/include/asterisk
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-03-21 19:19:35 +0000
committerRussell Bryant <russell@russellbryant.com>2006-03-21 19:19:35 +0000
commitcfea89a29ade470613649c4585e51046464b7b50 (patch)
treee6866744fe4ebe346f50a239674fa03b159ef602 /include/asterisk
parentf88219715756f8761ac2752cd18e3a73853707b5 (diff)
update LOCAL_USER_ADD to use ast_calloc
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@14000 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk')
-rw-r--r--include/asterisk/module.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asterisk/module.h b/include/asterisk/module.h
index 2af08533c..e159642c0 100644
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -26,6 +26,8 @@
#ifndef _ASTERISK_MODULE_H
#define _ASTERISK_MODULE_H
+#include "asterisk/utils.h"
+
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
@@ -318,10 +320,8 @@ struct localuser {
*/
#define LOCAL_USER_ADD(u) { \
\
- if (!(u=calloc(1,sizeof(*u)))) { \
- ast_log(LOG_WARNING, "Out of memory\n"); \
+ if (!(u = ast_calloc(1, sizeof(*u)))) \
return -1; \
- } \
ast_mutex_lock(&localuser_lock); \
u->chan = chan; \
u->next = localusers; \