summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-09-15 17:17:51 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-09-15 17:17:51 +0000
commitb82a1ae4cef20f1b50c6a2a78d1635a4c18af8ca (patch)
treee5abaff30d0d0f4bf71da94653eabcf9a7767edb /nuttx/ChangeLog
parentb6b09a6b1af770cbd3ab849fa8b974c3e6f7caae (diff)
downloadnuttx-b82a1ae4cef20f1b50c6a2a78d1635a4c18af8ca.tar.gz
nuttx-b82a1ae4cef20f1b50c6a2a78d1635a4c18af8ca.tar.bz2
nuttx-b82a1ae4cef20f1b50c6a2a78d1635a4c18af8ca.zip
Fix reference counting errors
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2056 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 90ed1ba08..d7c7753ce 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -872,3 +872,10 @@
stdout to output debug data. That works fine unless (1) the dbg() macro
is interrupt logic and the interrupted task has redirected stdout! Most
changes were in uIP.
+ * net/uip/uip_tcpinput.c. Connection reference count was not being set correctly
+ when a socket is created by accepting a new connection. Since the reference
+ count is bad, such sockets are not successfully duplicated when being passed
+ to new tasks.
+ * net/net_clone.c. Similarly, after a socket is cloned, its reference count
+ was not being initialized.
+