summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordas <das@noemail.net>2005-05-19 13:28:30 (GMT)
committerdas <das@noemail.net>2005-05-19 13:28:30 (GMT)
commitd062fb99b5e95d11ffd90c06056f40608355ccf1 (patch)
treeb66dbf466ab984e2622ab697e4245961045813ca
parent11ba32b3a3b5c5a75a66fe3cab37a5dcb0c9e5d4 (diff)
downloadtcl-d062fb99b5e95d11ffd90c06056f40608355ccf1.zip
tcl-d062fb99b5e95d11ffd90c06056f40608355ccf1.tar.gz
tcl-d062fb99b5e95d11ffd90c06056f40608355ccf1.tar.bz2
* macosx/tclMacOSXNotify.c (Tcl_InitNotifier): fixed crashing
CFRelease of runLoopSource in Tcl_InitNotifier (reported by Zoran): CFRunLoopAddSource doesn't CFRetain, so can only CFRelease the runLoopSource in Tcl_FinalizeNotifier. FossilOrigin-Name: 3a9463d7ae8dd3dccecce5d73514fefd08e1fad1
-rw-r--r--ChangeLog8
1 files changed, 4 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 83b9368..3ea3bc1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,9 @@
2005-05-19 Daniel Steffen <das@users.sourceforge.net>
- * macosx/tclMacOSXNotify.c (Tcl_InitNotifier): fixed incorrect
- CFRelease of runLoopSource in Tcl_InitNotifier (reported by Zoran).
- CFRunLoopAddSource doesn't CFRetain, so moved the CFRelease to
- Tcl_FinalizeNotifier.
+ * macosx/tclMacOSXNotify.c (Tcl_InitNotifier): fixed crashing
+ CFRelease of runLoopSource in Tcl_InitNotifier (reported by Zoran):
+ CFRunLoopAddSource doesn't CFRetain, so can only CFRelease the
+ runLoopSource in Tcl_FinalizeNotifier.
2005-05-18 Don Porter <dgp@users.sourceforge.net>