Skip to content
Snippets Groups Projects
Commit bc46dfac authored by Jayachandran Chandrasekharan Nair's avatar Jayachandran Chandrasekharan Nair Committed by Joe Hershberger
Browse files

net: tftp: fix type of block arg to store_block


The block argument for store_block can be -1 when the tftp sequence
number rolls over (i.e TftpBlock == 0), so the first argument to
store_block has to be of type 'int' instead of 'unsigned'.

In our environment (gcc 4.4.5 mips toolchain), this causes incorrect
'offset' to be generated for storing the block, and the tftp block
with number 0 will be written elsewhere, resulting in a bad block in
the downloaded file and a memory corruption.

Signed-off-by: default avatarJayachandran Chandrasekharan Nair <jayachandranc@netlogicmicro.com>
parent 211e4754
No related branches found
No related tags found
No related merge requests found
......@@ -156,7 +156,7 @@ mcast_cleanup(void)
#endif /* CONFIG_MCAST_TFTP */
static inline void
store_block(unsigned block, uchar *src, unsigned len)
store_block(int block, uchar *src, unsigned len)
{
ulong offset = block * TftpBlkSize + TftpBlockWrapOffset;
ulong newsize = offset + len;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment