[tools] firmware-utils:fix a bug in mkzynfw, thanks to <theosch at gmx.de> (closes...
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 17 Jan 2008 14:46:10 +0000 (14:46 +0000)
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 17 Jan 2008 14:46:10 +0000 (14:46 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10218 3c298f89-4303-0410-b956-a3cf2f4a3e73

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;
        }