[asterisk-commits] wedhorn: trunk r339993 - in /trunk: ./	channels/chan_skinny.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Sun Oct  9 16:15:12 CDT 2011
    
    
  
Author: wedhorn
Date: Sun Oct  9 16:15:09 2011
New Revision: 339993
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=339993
Log:
Merged revisions 339992 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/10
........
  r339992 | wedhorn | 2011-10-10 08:09:12 +1100 (Mon, 10 Oct 2011) | 9 lines
  
  Remove log message on traverse session list.
  
  On destroying a session, a list of sessions is traversed to find the 
  matching session. For each session not matching, skinny erroneously
  logged that the session was not matched. While technically correct
  the message was misleading, and tended to indicate errors that 
  were not there.
........
Modified:
    trunk/   (props changed)
    trunk/channels/chan_skinny.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.
Modified: trunk/channels/chan_skinny.c
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/chan_skinny.c?view=diff&rev=339993&r1=339992&r2=339993
==============================================================================
--- trunk/channels/chan_skinny.c (original)
+++ trunk/channels/chan_skinny.c Sun Oct  9 16:15:09 2011
@@ -6773,8 +6773,6 @@
 			ast_mutex_destroy(&s->lock);
 			
 			ast_free(s);
-		} else {
-			ast_log(LOG_WARNING, "Trying to delete nonexistent session %p?\n", s);
 		}
 	}
 	AST_LIST_TRAVERSE_SAFE_END
    
    
More information about the asterisk-commits
mailing list