summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorSebastian Wilhelmi <wilhelmi@ira.uka.de>2000-03-24 15:36:03 +0000
committerSebastian Wilhelmi <wilhelmi@src.gnome.org>2000-03-24 15:36:03 +0000
commitfe2e948e0bc2f483870815497572f077067a237c (patch)
treeff0bd5c632e9ee79f9f3c45c466244d8bf1ab270 /ChangeLog
parentd3cdac0cdb105633699781240a999e58fc16ab0b (diff)
downloadglib-fe2e948e0bc2f483870815497572f077067a237c.tar.gz
Made GArray behave correct. Now zero_terminated really means, that the
2000-03-24 Sebastian Wilhelmi <wilhelmi@ira.uka.de> * garray.c: Made GArray behave correct. Now zero_terminated really means, that the element array->data[array->len] exists and is zeroed, and clear means that any unassigned elements obtained through g_array_set_size (the only way to get unassigned elements AFAICT) are zeroed. Added some macors to mak the code more obvoius. Also made GPtrArray zero elements after g_ptr_array_set_size. This is done in a portbale way (assignment of NULL instead of just memsetting it to zero), though that might be more portability than we actually want.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 85c3c7311..56fdc310d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
2000-03-24 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
+ * garray.c: Made GArray behave correct. Now zero_terminated really
+ means, that the element array->data[array->len] exists and is
+ zeroed, and clear means that any unassigned elements obtained
+ through g_array_set_size (the only way to get unassigned elements
+ AFAICT) are zeroed. Added some macors to mak the code more
+ obvoius. Also made GPtrArray zero elements after
+ g_ptr_array_set_size. This is done in a portbale way (assignment
+ of NULL instead of just memsetting it to zero), though that might
+ be more portability than we actually want.
+
* Makefile.am, gthread/Makefile.am, gmodule/Makefile.am,
tests/Makefile.am: Added various win32 related *.in files to
EXTRA_DIST to let 'make distcheck' procude all the corresponding