From: Tilghman Lesher Date: Thu, 15 Jun 2006 12:26:50 +0000 (+0000) Subject: ast_calloc already reports out of memory conditions (issue 7343) X-Git-Tag: 1.4.0-beta1~887 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5d54051fe5aa192fcd88875821b6be410f55725;p=thirdparty%2Fasterisk.git 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 --- 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); }