[tools] firmware-utils:fix a bug in mkzynfw, thanks to <theosch at gmx.de> (closes...
[openwrt/svn-archive/archive.git] / tools / firmware-utils / src / mkzynfw.c
index 130d95a8c037dba9fac085bd0644e03d80c300eb..bc512c82e6d867681d84c8de6044712d497e1795 100755 (executable)
@@ -794,7 +794,7 @@ parse_opt_block(char ch, char *arg)
        struct fw_block *block;
        int i;
 
-       if ( num_blocks > MAX_NUM_BLOCKS ) {
+       if ( num_blocks >= MAX_NUM_BLOCKS ) {
                ERR("too many blocks specified");
                return -1;
        }