diff options
author | okan | 2014-01-29 18:34:22 +0000 |
---|---|---|
committer | okan | 2014-01-29 18:34:22 +0000 |
commit | 08fa24dca333c81539bb60aedcaa48ce1bee7beb (patch) | |
tree | cb65a6853aed7befbde97e10baa51336719f0b46 /parse.y | |
parent | 673041f76297706b7679f3140891e8ab1dd548d8 (diff) | |
download | cwm-08fa24dca333c81539bb60aedcaa48ce1bee7beb.tar.gz |
Check command name/path for truncation and provide user feedback during
config parse (and use conf_cmd_add to populate defaults); based on a
discussion with Tiago Cunha. While this looks ugly, there are likely
some other changes here to come.
Diffstat (limited to 'parse.y')
-rw-r--r-- | parse.y | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.55 2014/01/28 20:22:21 okan Exp $ */ +/* $OpenBSD: parse.y,v 1.56 2014/01/29 18:34:22 okan Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -137,7 +137,12 @@ main : FONTNAME STRING { conf->snapdist = $2; } | COMMAND STRING string { - conf_cmd_add(conf, $2, $3); + if (!conf_cmd_add(conf, $2, $3)) { + yyerror("command name/path too long"); + free($2); + free($3); + YYERROR; + } free($2); free($3); } |