From 0073f0de9eba3d2a23b4be1fa144aa09d4464758 Mon Sep 17 00:00:00 2001 From: Joshua Colp <jcolp@digium.com> Date: Fri, 16 Jun 2006 16:30:42 +0000 Subject: [PATCH] Handle failure of ast_calloc when allocating interfaces in res_smdi (issue #7344 reported by casper) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@34495 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_smdi.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/res/res_smdi.c b/res/res_smdi.c index 8e12f89c3d..324556e406 100644 --- a/res/res_smdi.c +++ b/res/res_smdi.c @@ -617,7 +617,8 @@ static int smdi_load(int reload) } } - iface = ast_calloc(1, sizeof(*iface)); + if (!(iface = ast_calloc(1, sizeof(*iface)))) + continue; ASTOBJ_INIT(iface); ASTOBJ_CONTAINER_INIT(&iface->md_q); -- GitLab