[pkg-wine-party] [SCM] Debian Wine packaging branch, wheezy, updated. wine-1.4-7-302-gb61b690

Alexandre Julliard julliard at winehq.org
Sun Jun 17 20:03:05 UTC 2012


The following commit has been merged in the wheezy branch:
commit 45d4c6996a86d851f428c1d5901ea6bcba8e6000
Author: Jacek Caban <jacek at codeweavers.com>
Date:   Mon Apr 2 13:46:11 2012 +0200

    jscript: Fixed parsing /=/ regexp.
    (cherry picked from commit 114a439fed9f4fadc8a5a3ab27af869297f2321c)

diff --git a/dlls/jscript/lex.c b/dlls/jscript/lex.c
index dcdb3f3..4cf4d41 100644
--- a/dlls/jscript/lex.c
+++ b/dlls/jscript/lex.c
@@ -963,8 +963,7 @@ literal_t *parse_regexp(parser_ctx_t *ctx)
 
     TRACE("\n");
 
-    while(*ctx->ptr != '/')
-        ctx->ptr--;
+    while(*--ctx->ptr != '/');
 
     re = ++ctx->ptr;
     while(ctx->ptr < ctx->end && *ctx->ptr != '/') {

-- 
Debian Wine packaging



More information about the pkg-wine-party mailing list