* Disallow unescaped $ in string literals.
This commit is contained in:
		
							parent
							
								
									0064599a27
								
							
						
					
					
						commit
						7276e194ee
					
				
					 1 changed files with 1 additions and 4 deletions
				
			
		|  | @ -73,10 +73,7 @@ inherit     { return INHERIT; } | ||||||
|             } |             } | ||||||
| 
 | 
 | ||||||
| \"          { BEGIN(STRING); return '"'; } | \"          { BEGIN(STRING); return '"'; } | ||||||
| <STRING>([^\$\"\\]|\\.|\$[^\{\$])+ { | <STRING>([^\$\"\\]|\\.)+ { | ||||||
| /* Note: a dollar *is* allowed as-is in a string, as long as it's |  | ||||||
|    not followed by a open brace.  This should probably be disallowed |  | ||||||
|    eventually. */ |  | ||||||
|               yylval->t = unescapeStr(yytext); /* !!! alloc */  |               yylval->t = unescapeStr(yytext); /* !!! alloc */  | ||||||
|               return STR; |               return STR; | ||||||
|             } |             } | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue