Michael Curran : d3dxof: Changed is_string function to accept spaces.

Alexandre Julliard julliard at winehq.org
Mon Apr 11 13:29:30 CDT 2011


Module: wine
Branch: master
Commit: 7d5099e4fc221d2a309605ecc95d66e685d193a3
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=7d5099e4fc221d2a309605ecc95d66e685d193a3

Author: Michael Curran <curran.michaelp at gmail.com>
Date:   Sun Apr 10 16:31:45 2011 -0400

d3dxof: Changed is_string function to accept spaces.

---

 dlls/d3dxof/parsing.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/d3dxof/parsing.c b/dlls/d3dxof/parsing.c
index dcef96b..0acb7d6 100644
--- a/dlls/d3dxof/parsing.c
+++ b/dlls/d3dxof/parsing.c
@@ -475,7 +475,7 @@ static BOOL is_string(parse_buffer* buf)
   if (*buf->buffer != '"')
     return FALSE;
 
-  while (!is_separator(c = *(buf->buffer+pos+1)) && (pos < 99))
+  while (!is_operator(c = *(buf->buffer+pos+1)) && (pos < 99))
   {
     if (c == '"')
     {




More information about the wine-cvs mailing list