- 19 Jan, 2010 13 commits
-
-
Christian Costa authored
-
Christian Costa authored
-
Christian Costa authored
-
Rob Shearman authored
-
Rob Shearman authored
The current regular expression causes all letters and spaces (among other characters) following the appearance of a digit to be classed as a literal, including C identifiers which may need to be expanded. The expression was intended to catch the remaining characters that were not covered by the first two rules ([^a-zA-Z0-9'"#/\\\n]+ and {cident}), but the [^'"#/\\\n] expression caught {cident} as well. While one solution would have been just to catch the expression that match [a-zA-Z0-9]* that don't match {cident}, i.e. [0-9][a-zA-Z0-9]*, in the interests of avoiding unnecessary multiple LITERALs being generated and then combined during parsing the expression also includes the first expression, making it [0-9][a-zA-Z0-9]*[^a-zA-Z0-9'"#/\\\n]*.
-
Damjan Jovanovic authored
-
Jörg Höhle authored
-
Nikolay Sivov authored
-
Nikolay Sivov authored
-
Nikolay Sivov authored
-
Nikolay Sivov authored
-
Nikolay Sivov authored
-
Ilya Shpigor authored
-
- 18 Jan, 2010 27 commits
-
-
Alexandre Julliard authored
It takes an event type, not a manual reset flag.
-
Maarten Lankhorst authored
-
Maarten Lankhorst authored
-
Andrew Nguyen authored
-
Andrew Nguyen authored
The PropCopyMore test function was incorrectly allocating memory and testing property types without initializing the correct property union member, causing a crash with the native Outlook extended MAPI provider.
-
Andrew Nguyen authored
-
Andrew Nguyen authored
-
Andrew Nguyen authored
-
Uwe Bonnes authored
-
Hans Leidekker authored
-
Hans Leidekker authored
-
Paul Vriens authored
-
Andrew Nguyen authored
-
Andrew Nguyen authored
-
Andrew Nguyen authored
-
Kusanagi Kouichi authored
-
Jason Edmeades authored
Based on code from NetWkstaGetInfo, and retrieves the basic system information. Note the 'type' field is a little generic as there is currently no concept of domain controllers, servers or workstation so I used the most accurate value I could.
-
Henri Verbeet authored
-
Henri Verbeet authored
-
Henri Verbeet authored
-
Henri Verbeet authored
-
Henri Verbeet authored
-
Uwe Bonnes authored
-
Mike Kaplinskiy authored
We can't just use //tagname; we have to do //*[local-name()='tagname'].
-
André Hentschel authored
-
Andrew Nguyen authored
-
Andrew Nguyen authored
-