[svn-commits] seanbright: branch 1.6.2 r277144 - in /branches/1.6.2: ./ main/translate.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Jul 16 10:21:50 CDT 2010


Author: seanbright
Date: Fri Jul 16 10:21:46 2010
New Revision: 277144

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=277144
Log:
Merged revisions 277143 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r277143 | seanbright | 2010-07-16 11:20:40 -0400 (Fri, 16 Jul 2010) | 8 lines
  
  Avoid crashing when installing a duplicate translation path with a lower cost.
  
  (closes issue #17092)
  Reported by: moy
  Patches:
        translate.rev254273.patch uploaded by moy (license 222)
  Tested by: moy
........

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/main/translate.c

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.2/main/translate.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/main/translate.c?view=diff&rev=277144&r1=277143&r2=277144
==============================================================================
--- branches/1.6.2/main/translate.c (original)
+++ branches/1.6.2/main/translate.c Fri Jul 16 10:21:46 2010
@@ -665,6 +665,7 @@
 		    (u->cost > t->cost)) {
 			AST_RWLIST_INSERT_BEFORE_CURRENT(t, list);
 			t = NULL;
+			break;
 		}
 	}
 	AST_RWLIST_TRAVERSE_SAFE_END;




More information about the svn-commits mailing list