Commit db92536c authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Fixed a char/NULL comparison.

parent 0dc07e2d
...@@ -342,7 +342,7 @@ int pop_driver(char **drivers, char **single, int *length) ...@@ -342,7 +342,7 @@ int pop_driver(char **drivers, char **single, int *length)
*single = *drivers; *single = *drivers;
*length = 0; *length = 0;
while ((*drivers[0] != NULL) && (*drivers[0] != '+')) while ((*drivers[0] != '\0') && (*drivers[0] != '+'))
{ {
(*drivers)++; (*drivers)++;
(*length)++; (*length)++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment