Re: Resend PATCH - setupapi add support for both Windows and Unixstyle line endings to setupapi parser

2003-06-16 Thread Alexandre Julliard
Steven Edwards [EMAIL PROTECTED] writes: Does this need to be changed or is there something else wrong with this patch? This shouldn't be needed AFAICT, \r should already be treated as a space character. There may be another bug here though, do you have an example file showing the problem? --

Re: Resend PATCH - setupapi add support for both Windows and Unixstyle line endings to setupapi parser

2003-06-16 Thread Todd Vierling
On Mon, 16 Jun 2003, Steven Edwards wrote: : Does this need to be changed or is there something else wrong with this : patch? : -return (ptr = parser-end || *ptr == CONTROL_Z || *ptr == '\n'); : +return (ptr = parser-end || *ptr == CONTROL_Z || *ptr == '\n' || : (*ptr == '\r' *(ptr + 1)