summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorivmai <ivmai>2011-06-30 15:43:44 +0000
committerIvan Maidanski <ivmai@mail.ru>2011-07-26 21:07:00 +0400
commitcea7d64af0f72989c690b0b0b8655a5f2d7ab2ad (patch)
tree0503f942088470083b0a292980ce05f8a35d860f /ChangeLog
parent45a388771686fd791fc753fa877fc794b04d3c32 (diff)
downloadbdwgc-cea7d64af0f72989c690b0b0b8655a5f2d7ab2ad.tar.gz
2011-06-30 Ivan Maidanski <ivmai@mail.ru>
* dyn_load.c (GC_register_map_entries): Remove "count" local variable as unused. * gc_dlopen.c (disable_gc_for_dlopen): Define only if not USE_PROC_FOR_LIBRARIES. * malloc.c (calloc): Add parentheses around '&&' operator. * mark.c (GC_noop_sink): New global variable (instead of a static local variable inside GC_noop1). * mark.c (GC_noop1): Use GC_noop_sink variable (to prevent "variable set but not used" compiler warning). * include/private/gcconfig.h (USE_PROC_FOR_LIBRARIES): Define only if undefined yet. * tests/smash_test.c (main): Don't dereference "p" local variable if it is NULL. * tests/staticrootslib.c (main): Ditto.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog17
1 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f5423602..ab7c4398 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,22 @@
2011-06-30 Ivan Maidanski <ivmai@mail.ru>
+ * dyn_load.c (GC_register_map_entries): Remove "count" local
+ variable as unused.
+ * gc_dlopen.c (disable_gc_for_dlopen): Define only if not
+ USE_PROC_FOR_LIBRARIES.
+ * malloc.c (calloc): Add parentheses around '&&' operator.
+ * mark.c (GC_noop_sink): New global variable (instead of a static
+ local variable inside GC_noop1).
+ * mark.c (GC_noop1): Use GC_noop_sink variable (to prevent
+ "variable set but not used" compiler warning).
+ * include/private/gcconfig.h (USE_PROC_FOR_LIBRARIES): Define only
+ if undefined yet.
+ * tests/smash_test.c (main): Don't dereference "p" local variable
+ if it is NULL.
+ * tests/staticrootslib.c (main): Ditto.
+
+2011-06-30 Ivan Maidanski <ivmai@mail.ru>
+
* pthread_support.c (GC_segment_is_thread_stack): Replace '&'
operator with '&&' one in conditional expressions.
* specific.c (remove_specific): Dereference "entry" local variable