[asterisk-commits] file: trunk r87295 - in /trunk: ./ main/utils.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon Oct 29 09:29:18 CDT 2007


Author: file
Date: Mon Oct 29 09:29:18 2007
New Revision: 87295

URL: http://svn.digium.com/view/asterisk?view=rev&rev=87295
Log:
Merged revisions 87294 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r87294 | file | 2007-10-29 11:23:49 -0300 (Mon, 29 Oct 2007) | 6 lines

Fix issue with ast_unescape_semicolon going into an endless loop.
(closes issue #10550)
Reported by: ramonpeek
Patches:
      unescape-85177-1.patch uploaded by IgorG (license 20)

........

Modified:
    trunk/   (props changed)
    trunk/main/utils.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/main/utils.c
URL: http://svn.digium.com/view/asterisk/trunk/main/utils.c?view=diff&rev=87295&r1=87294&r2=87295
==============================================================================
--- trunk/main/utils.c (original)
+++ trunk/main/utils.c Mon Oct 29 09:29:18 2007
@@ -997,6 +997,8 @@
 		if ((e > work) && (*(e-1) == '\\')) {
 			memmove(e - 1, e, strlen(e) + 1);
 			work = e;
+		} else {
+			work = e + 1;
 		}
 	}
 




More information about the asterisk-commits mailing list