From: Ken Hornstein Date: Fri, 1 Jun 2012 14:25:37 +0000 (-0400) Subject: Fix off-by-one error, noticed by Ralph Corderoy. X-Git-Url: http://git.marmaro.de/?a=commitdiff_plain;h=ce4e75e99c095abfcfd799df10a9b7f349c21c4a;p=mmh Fix off-by-one error, noticed by Ralph Corderoy. --- diff --git a/uip/mhbuildsbr.c b/uip/mhbuildsbr.c index 93f1647..4a2c70c 100644 --- a/uip/mhbuildsbr.c +++ b/uip/mhbuildsbr.c @@ -97,7 +97,7 @@ static int do_direct(void) static void directive_onoff(int onoff) { - if (directives_index >= sizeof(directives_stack)) { + if (directives_index >= sizeof(directives_stack) - 1) { fprintf(stderr, "mhbuild: #on/off overflow, continuing\n"); return; }