From f5d54051fe5aa192fcd88875821b6be410f55725 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Thu, 15 Jun 2006 12:26:50 +0000 Subject: [PATCH] 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 --- res/res_osp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/res/res_osp.c b/res/res_osp.c index 4a00a73aab..62115db4bf 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); }