summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2006-06-15 12:26:50 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2006-06-15 12:26:50 +0000
commitf5d54051fe5aa192fcd88875821b6be410f55725 (patch)
treeaf3bbc4351867fdc950f9c728245907bea088f4c /res
parent83e64c7c94172230be4a8e9ff8b3a91a9f1fb84f (diff)
ast_calloc already reports out of memory conditions (issue 7343)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@34240 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res')
-rw-r--r--res/res_osp.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/res/res_osp.c b/res/res_osp.c
index 4a00a73aa..62115db4b 100644
--- a/res/res_osp.c
+++ b/res/res_osp.c
@@ -178,7 +178,6 @@ static int osp_buildProvider(
p = ast_calloc(1, sizeof(*p));
if (!p) {
- ast_log(LOG_ERROR, "Out of memory\n");
return(-1);
}