wbemprox: Treat \r as whitespace.

This commit is contained in:
Michael Müller 2015-05-24 03:53:13 +02:00 committed by Alexandre Julliard
parent 8c11e6b2f0
commit 688db4d273
2 changed files with 4 additions and 1 deletions

View file

@ -96,7 +96,9 @@ static void test_select( IWbemServices *services )
{'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ','W','i','n','3','2','_',
'D','i','s','k','D','r','i','v','e',' ','W','H','E','R','E',' ','D','e','v','i','c','e','I','D','=',
'\"','\\','\\','\\','\\','.','\\','\\','P','H','Y','S','I','C','A','L','D','R','I','V','E','0','\"',0};
static const WCHAR *test[] = { query1, query2, query3, query4, query5, query6, query7, query8 };
static const WCHAR query9[] =
{'S','E','L','E','C','T','\n','a','\r','F','R','O','M','\t','b',0};
static const WCHAR *test[] = { query1, query2, query3, query4, query5, query6, query7, query8, query9 };
HRESULT hr;
IEnumWbemClassObject *result;
BSTR wql = SysAllocString( wqlW );

View file

@ -583,6 +583,7 @@ static int get_token( const WCHAR *s, int *token )
{
case ' ':
case '\t':
case '\r':
case '\n':
for (i = 1; isspaceW( s[i] ); i++) {}
*token = TK_SPACE;