summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-18 22:09:09 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-18 22:09:09 +0000
commit92526b8dc0925c81edc33b794dd3d546de04b096 (patch)
tree0d70276a12875c48450c56fea8a84b9820a289f5 /nuttx/ChangeLog
parentfadbb925a6a118790d8d661fea3956bb0f76348a (diff)
downloadnuttx-92526b8dc0925c81edc33b794dd3d546de04b096.tar.gz
nuttx-92526b8dc0925c81edc33b794dd3d546de04b096.tar.bz2
nuttx-92526b8dc0925c81edc33b794dd3d546de04b096.zip
Correct a buffer size error in the STM32 ethernet driver
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4403 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog6
1 files changed, 5 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 138ab78b2..b69ff8179 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -2468,4 +2468,8 @@
this is little more than a "skeleton" file.
* Various files: CAN ISO-11783 support contributed by Gary Teravskis.
* net/recv.c and net/recvfrom.c: Correct a bug in return value: The the peer
- gracefully closes the connections, needs to return zero and not ENOTCONN \ No newline at end of file
+ gracefully closes the connections, needs to return zero and not ENOTCONN.
+ * arch/arm/src/stm32/stm32_eth.c: Fix an error in the STM32 ethernet driver.
+ The received buffer size must be two bytes larger to account for the two byte
+ checksum that is appended to the packet. Otherwise, the last two bytes of
+ real data in the packet will get clobbered.