[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:04:05 UTC 2012


The following commit has been merged in the wheezy branch:
commit 1345ad4a6d6471430fc591f797dde3501435d58c
Author: Christian Costa <titan.costa at gmail.com>
Date:   Fri Mar 9 11:54:00 2012 +0100

    d3dxof: Do not allow separator to terminate the string. Only the double quote can do that.
    (cherry picked from commit 67488dec097e56c8bcb64a17f65d5f4a317b7b2d)

diff --git a/dlls/d3dxof/parsing.c b/dlls/d3dxof/parsing.c
index 9f426c4..0bef29d 100644
--- a/dlls/d3dxof/parsing.c
+++ b/dlls/d3dxof/parsing.c
@@ -605,8 +605,9 @@ static BOOL is_string(parse_buffer* buf)
   if (*buf->buffer != '"')
     return FALSE;
 
-  while ((pos+1) < buf->rem_bytes && !is_operator(c = *(buf->buffer+pos+1)))
+  while ((pos+1) < buf->rem_bytes)
   {
+    c = *(buf->buffer+pos+1);
     if (c == '"')
     {
       ok = 1;

-- 
Debian Wine packaging



More information about the pkg-wine-party mailing list