[asterisk-commits] tilghman: trunk r152923 - in /trunk: ./	channels/chan_local.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Thu Oct 30 14:45:53 CDT 2008
    
    
  
Author: tilghman
Date: Thu Oct 30 14:45:52 2008
New Revision: 152923
URL: http://svn.digium.com/view/asterisk?view=rev&rev=152923
Log:
Merged revisions 152922 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
  r152922 | tilghman | 2008-10-30 14:43:38 -0500 (Thu, 30 Oct 2008) | 6 lines
  
  Unlock before returning, when extension doesn't exist.
  (closes issue #13807)
   Reported by: eliel
   Patches: 
         chan_local.c.patch uploaded by eliel (license 64)
........
Modified:
    trunk/   (props changed)
    trunk/channels/chan_local.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/channels/chan_local.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_local.c?view=diff&rev=152923&r1=152922&r2=152923
==============================================================================
--- trunk/channels/chan_local.c (original)
+++ trunk/channels/chan_local.c Thu Oct 30 14:45:52 2008
@@ -521,6 +521,7 @@
 
 	if (!ast_exists_extension(NULL, p->chan->context, p->chan->exten, 1, p->owner->cid.cid_num)) {
 		ast_log(LOG_NOTICE, "No such extension/context %s@%s while calling Local channel\n", p->chan->exten, p->chan->context);
+		ast_mutex_unlock(&p->lock);
 		return -1;
 	}
 
    
    
More information about the asterisk-commits
mailing list