diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-05-21 23:04:15 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-05-21 23:04:15 +0200 |
commit | 0a29e2445c8d7300b5d72e2ba05755ea1ad5b6d1 (patch) | |
tree | ce7d4499663ac249650572a4c26e1ede2d6ecbdc /CHANGES | |
parent | 700335103e039a9f56adf24cfe95fb846caebe61 (diff) | |
download | curl-0a29e2445c8d7300b5d72e2ba05755ea1ad5b6d1.tar.gz |
TFTP: block id wrap bug fix
In a normal expression, doing [unsigned short] + 1 will not wrap
at 16 bits so the comparisons and outputs were done wrong. I
added a macro do make sure it gets done right.
Douglas Kilpatrick filed bug report #3004787 about it:
http://curl.haxx.se/bug/view.cgi?id=3004787
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -6,6 +6,12 @@ Changelog +Daniel Stenberg (21 May 2010) +- Douglas Kilpatrick filed bug report #3004787 and pointed out that the TFTP + code didn't handle block id wraps correctly. His suggested fix inspired the + fix I committed. + + (http://curl.haxx.se/bug/view.cgi?id=3004787) Daniel Stenberg (20 May 2010) - Tanguy Fautre brought a fix to allow curl to build with Microsoft VC10. |