summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-11-29 18:21:52 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-11-29 18:21:52 +0000
commitddd14eb77b2b22a02a0c206f959894aff7814b30 (patch)
treee2445aabb6a843ff75bdc1f15d617d1ae450c72d /nuttx/ChangeLog
parent2ff21a4ebbe5385a702567220d6287b66cd9328b (diff)
downloadpx4-nuttx-ddd14eb77b2b22a02a0c206f959894aff7814b30.tar.gz
px4-nuttx-ddd14eb77b2b22a02a0c206f959894aff7814b30.tar.bz2
px4-nuttx-ddd14eb77b2b22a02a0c206f959894aff7814b30.zip
Fix handling of NULL pointer in sig_timedwait()
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4129 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog4
1 files changed, 3 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index de0f8872f..523d11ddd 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -2224,4 +2224,6 @@
board.
* include/sys/types.h: wchar_t is a builtin type in C++ and its
declaration can cause errors with certain C++ compilers.
-
+ * sched/sig_timedwait.c: Fix signal handling with the returned info
+ is NULL. Before this change, it would derefence a NULL pointer
+ in this case.