diff options
author | marha <marha@users.sourceforge.net> | 2010-07-09 18:43:26 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-07-09 18:43:26 +0000 |
commit | a32fb49df0a63bee951f98e7583396c3adb28ad3 (patch) | |
tree | 0454850c954172b17575d561061d99a1d502fcc1 /tools/mhmake/src/mhmakeparser.y | |
parent | 29c7981777a6fa7d962977d2a7bdce68c116206d (diff) | |
download | vcxsrv-a32fb49df0a63bee951f98e7583396c3adb28ad3.tar.gz vcxsrv-a32fb49df0a63bee951f98e7583396c3adb28ad3.tar.bz2 vcxsrv-a32fb49df0a63bee951f98e7583396c3adb28ad3.zip |
Solved crash when compiled with VS2010
Diffstat (limited to 'tools/mhmake/src/mhmakeparser.y')
-rw-r--r-- | tools/mhmake/src/mhmakeparser.y | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/mhmake/src/mhmakeparser.y b/tools/mhmake/src/mhmakeparser.y index 336ddb6dc..2b2e11411 100644 --- a/tools/mhmake/src/mhmakeparser.y +++ b/tools/mhmake/src/mhmakeparser.y @@ -188,7 +188,8 @@ optvarassignment: STRING OPTEQUAL maybeemptyexpression ;
maybeemptyexpression: NEWLINE {$$=g_EmptyString;} |
- expression NEWLINE
+ expression NEWLINE |
+ expression SPACE NEWLINE
;
expression: nonspaceexpression |
|