aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-15 12:26:50 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-15 12:26:50 +0000
commit13e26b9db0c77c6c4843d49717c195687265a305 (patch)
treeaf3bbc4351867fdc950f9c728245907bea088f4c /res
parent7aa850812294383302b3a5bdfe8b94d68c670561 (diff)
ast_calloc already reports out of memory conditions (issue 7343)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@34240 f38db490-d61c-443f-a65b-d21fe96a405b
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);
}