]> git.sur5r.net Git - u-boot/commit
ext2fs: fix warning: 'blocknxt' may be used uninitialized with gcc 4.2
authorTom Rini <trini@ti.com>
Tue, 7 Aug 2012 16:58:34 +0000 (09:58 -0700)
committerWolfgang Denk <wd@denx.de>
Tue, 7 Aug 2012 18:52:42 +0000 (20:52 +0200)
commit94c1a20fe78c0d3ba44ee8674b91163dddad0d80
treed110db075f8ab89403f7c7b06ec74e91a91b764c
parent56249fea3d5e32cddcd9160e51ec93a9c4327c6b
ext2fs: fix warning: 'blocknxt' may be used uninitialized with gcc 4.2

The above warning was introduced originally in 436da3c "ext2load:
increase read speed" and fixed for newer toolchains in b803273 "ext2fs:
fix warning: 'blocknxt' may be used uninitialized".  This change did not
fix the warning with gcc 4.2, as found in ELDK 4.2.

If we rework the while loop to initalize blocknxt before entering the
warning really goes away.  Tested on am335x with an approx 7mb file and
crc32 in U-Boot befor and after this change.

Cc: Wolfgang Denk <wd@denx.de>
Cc: Eric Nelson <eric.nelson@boundarydevices.com>
Cc: Thierry Reding <thierry.reding@avionic-design.de>
Cc: Jason Cooper <u-boot@lakedaemon.net>
Cc: Andreas Bießmann <andreas.devel@googlemail.com>
Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
Cc: Kim Phillips <kim.phillips@freescale.com>
Signed-off-by: Tom Rini <trini@ti.com>
fs/ext2/ext2fs.c