PATCH - Setupapi parser.c

Steven Edwards Steven_Ed4153 at yahoo.com
Tue May 20 19:18:47 CDT 2003


Changelog: Eric Kohl for ReactOS - Fix parser to accept both DOS and 
Unix line endings.

Index: parser.c
===================================================================
RCS file: /home/wine/wine/dlls/setupapi/parser.c,v
retrieving revision 1.7
diff -u -r1.7 parser.c
--- parser.c    15 Mar 2003 00:12:42 -0000    1.7
+++ parser.c    21 May 2003 00:13:11 -0000
@@ -454,7 +454,7 @@
 /* check if the pointer points to an end of line */
 inline static int is_eol( struct parser *parser, const WCHAR *ptr )
 {
-    return (ptr >= parser->end || *ptr == CONTROL_Z || *ptr == '\n');
+    return (ptr >= parser->end || *ptr == CONTROL_Z || *ptr == '\n' || 
(*ptr == '\r'&& *(ptr + 1) == '\n'));
 }
 
 
@@ -561,6 +561,8 @@
     {
         switch(*p)
         {
+        case '\r':
+            continue;
         case '\n':
             parser->line_pos++;
             close_current_line( parser );
@@ -725,6 +727,8 @@
     {
         switch(*p)
         {
+        case '\r':
+            continue;
         case '\n':
             parser->line_pos++;
             parser->start = p + 1;






More information about the wine-patches mailing list