From: Mark Spencer Date: Wed, 9 Jun 2004 13:55:52 +0000 (+0000) Subject: Return NULL if no CRV found X-Git-Tag: 1.0.0-rc1~277 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1794aac9e1429eed81c10cd7f196352e8fb73767;p=thirdparty%2Fasterisk.git Return NULL if no CRV found git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3180 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_zap.c b/channels/chan_zap.c index d85e7102f3..3c755cf0f1 100755 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -6412,6 +6412,7 @@ static struct zt_pvt *pri_find_crv(struct zt_pri *pri, int crv) return p; p = p->next; } + return NULL; }