summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorrpj <rpj>2001-10-26 00:59:36 +0000
committerrpj <rpj>2001-10-26 00:59:36 +0000
commit104d1669a344de413ea4c7f1106fcf4a5d95b610 (patch)
treef60879376166e1eb13b98e57cb07c154f8d2be8d /ChangeLog
parent70451597bca186f31d4a69aec0ae940fe90e3d56 (diff)
semaphore.c (sem_init): somehow when sem_t reverted to an opaque struct
the calloc NULL check was left in the conditionally included section. (sem_destroy): Likewise, the calloced sem_t wasn't being freed.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 93d5d80..2e27f6a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,7 +5,10 @@
* semaphore.c (sem_init): Fix typo and missing bracket
in conditionally compiled code. Only older versions of
WinCE require this code, hence it doesn't normally get
- tested.
+ tested; somehow when sem_t reverted to an opaque struct
+ the calloc NULL check was left in the conditionally included
+ section.
+ (sem_destroy): Likewise, the calloced sem_t wasn't being freed.
2001-10-25 Ross Johnson <rpj@setup1.ise.canberra.edu.au>