Bug 555314 – mem leak in gmarkup
[platform/upstream/glib.git] / ChangeLog
1 2008-10-08  Christian Persch  <chpe@gnome.org>
2
3         Bug 555314 – mem leak in gmarkup
4
5         * glib/gmarkup.c: (g_markup_parse_context_parse): Plug a mem leak.
6
7 2008-10-08  Tor Lillqvist  <tml@novell.com>
8
9         Bug 554790 - g_convert() misbehaves with winiconv versions
10
11         * glib/win_iconv.c (kernel_mbtowc): If converting from ASCII,
12         explicitly check for and reject 8bit chars. MultiByteToWideChar()
13         doesn't, at least not on XP.
14
15 2008-10-06  Matthias Clasen  <mclasen@redhat.com>
16
17         * glib/gtypes.h: Properly include gmacros.h
18
19 2008-10-06  Behdad Esfahbod  <behdad@gnome.org>
20
21         Bug 555309 – giochannel breaks on error
22         Patch from Christian Persch
23
24         * glib/giounix.c (g_io_unix_read), (g_io_unix_write),
25         (g_io_unix_seek), (g_io_unix_close), (g_io_unix_set_flags):
26         Don't shadow err.  Oops!
27
28 2008-10-06  Christophe Fergeau  <teuf@gnome.org>
29
30         Bug 555224 – Improve g_format_size_for_display doc
31         
32         * glib/gfileutils.c: change g_format_size_for_display API doc to
33         explicitly say that the returned string has to be freed. Change
34         spelling of "newly allocated" to "newly-allocated" in g_file_read_link
35         API doc to be more consistent with what is done in that file.
36
37 2008-10-01  David Zeuthen  <davidz@redhat.com>
38
39         * README.in: Add "Notes about glib 2.20" section detailing the
40         ramifications of the patch from bug #528670.
41
42 2008-09-30  Behdad Esfahbod  <behdad@gnome.org>
43
44         Bug 554092 – glib doesn't return G_FILE_ERROR_NOENT et al on OS X
45
46         * glib/giounix.c (g_io_unix_read), (g_io_unix_write),
47         (g_io_unix_seek), (g_io_unix_close), (g_io_unix_set_flags),
48         (g_io_unix_get_flags), (g_io_channel_new_file):
49         Like mclasen says: "well, thats the way errno works...,
50         save it or loose it".  Save errno.
51
52 2008-09-30  Tor Lillqvist  <tml@novell.com>
53
54         * Makefile.decl
55         * glib/tests/Makefile.am: Bypass gtester related stuff on Windows.
56
57 2008-09-30  Tor Lillqvist  <tml@novell.com>
58
59         * glib/gprintf.c
60         * glib/gnulib/vasnprintf.c: Don't define _GNU_SOURCE on Windows,
61         as _GNU_SOURCE has unintended side effects when compiling against
62         newest mingw headers.
63
64 2008-09-26  Dan Winship  <danw@gnome.org>
65
66         Bug 553447 – g_assert_no_error()
67
68         * glib/gtestutils.h (g_assert_no_error, g_assert_error): Macros to
69         assert that a GError is not set, or else is set to a particular
70         error.
71
72         * glib/gtestutils.c (g_assertion_message_error): utility for
73         those macros
74
75         * glib/tests/keyfile.c:
76         * tests/asyncqueue-test.c:
77         * tests/bookmarkfile-test.c:
78         * tests/convert-test.c:
79         * tests/file-test.c: Use g_assert_error/g_assert_no_error
80
81 2008-09-26  Dan Winship  <danw@gnome.org>
82
83         * glib/gthreadpool.c (wakeup_thread_marker): make this a "const
84         gpointer" rather than a gconstpointer to avoid warnings later
85
86         * glib/pcre/pcre_ucp_searchfuncs.c:
87         * glib/pcre/pcre_valid_utf8.c: #include "config.h"
88
89         * glib/tests/printf.c (test_d): fool gcc into not warning about
90         some printf format strings that we know are dubious
91
92 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
93
94         Bug 553857 – gbacktrace.h requires signal.h
95
96         * glib/gbacktrace.h: Include signal.h for raise(). 
97         Pointed out by Sebastien Bacher
98
99 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
100
101         Bug 553724 – python interpretter path not patched in correctly
102
103         * glib/Makefile.am: Fix the sed magic to replace python.
104
105 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
106
107         * glib/gmain.c: Add some more docs.
108
109         * glib/giochannel.c: Move more docs inline, and improve them
110         on the way.
111
112 2008-09-25  Tor Lillqvist  <tml@novell.com>
113
114         Bug 553820 - gpoll.c: undeclared identifier
115
116         * glib/gmain.c
117         * glib/gpoll.c: Make the g_poll() function non-static also on
118         Windows. Prefix an underscore to the g_main_poll_debug variable
119         and make it non-static in gmain.c so that it can be used in
120         gpoll.c. Add back missing variable declaration.
121
122 2008-09-25  Tor Lillqvist  <tml@novell.com>
123
124         * glib/gspawn-win32.c (do_spawn_with_pipes) (do_spawn_directly):
125         Just ignore the child_setup function, never call it. The is no
126         situation in which it could be useful on Windows. Do print a
127         warning, like before.
128
129         * glib/gspawn.c (g_spawn_async_with_pipes): Corresponding change
130         in documentation.
131
132 2008-09-24  Sven Herzberg  <sven@imendio.com>
133
134         Be a little more explcit in the docs. Includes Owen's requested
135         changes.
136
137         * glib/gmain.c: improved documentation for g_source_attach() and
138         g_source_destroy()
139
140 2008-09-23  Michael Natterer  <mitch@imendio.com>
141
142         * glib/glib.h: #include <glib/gpoll.h>
143
144         * glib/gpoll.h: #error out if gpoll.h is included directly.
145
146         * glib/gpoll.c: remove trailing whitespace.
147
148 2008-09-23  Dan Winship  <danw@gnome.org>
149
150         * glib/gpoll.[ch] (g_poll): Move this out of gmain.c and make it part
151         of the public API. (Part of Bug 505361 - gunixinputstream.c assumes
152         poll() available.)
153
154 2008-09-23  Tor Lillqvist  <tml@novell.com>
155
156         * glib/gmain.c (poll_rest) [Win32]: Fix embarrassing bug: I was
157         passing an incorrect third parameter to memmove(), had forgotten
158         to multiply by the size of the table entry. Just use a for loop
159         instead, clearer. Odd I didn't notice when testing this code.
160
161 2008-09-19  Hans Petter Jansson  <hpj@novell.com>
162
163         Rewrite most of GHashTable to use open addressing with quadratic
164         probing instead of chaining. This has the potential to reduce memory
165         fragmentation significantly, while being slightly faster due to
166         better locality and no need to call alloc/free functions for nodes.
167         Benchmarks suggest it also uses less memory overall.
168
169         * glib/ghash.c (prime_mod): Table of suitable primes for
170         initial-probe distribution.
171         (g_hash_table_set_shift): New function.
172         (g_hash_table_find_closest_shift): New function.
173         (g_hash_table_set_shift_from_size): New function.
174         (g_hash_table_lookup_node_for_insertion): New function.
175         (g_hash_table_lookup_node): Rewritten to return node index instead of
176         pointer, use quadratic probe on flat table, and not return insertion
177         data. The latter saves some computation for read-only lookups.
178         (g_hash_table_remove_node): Rewrite to take a pointer directly to the
179         node structure to remove, and clear that. Remove unlinking code.
180         (g_hash_table_remove_all_nodes): Rewrite to not clear nodes
181         individually, but en masse using memset () after potentially calling
182         notify functions.
183         (iter_remove_or_steal): Use new data structure and algorithm. Vastly
184         simplified - now just a call to g_hash_table_remove_node ().
185         (g_hash_table_resize): New resize code, re-indexing with new prime
186         and cleaning up tombstones.
187         (g_hash_table_maybe_resize): Table may hold 8 buckets minimum, no less
188         than 1/4 load excluding tombstones, and no more than 15/16 load
189         including tombstones. These numbers are the results of a lot of
190         benchmarking with multiple complex applications, and should not be
191         changed lightly.
192         (g_hash_table_iter_next)
193         (g_hash_table_lookup)
194         (g_hash_table_lookup_extended)
195         (g_hash_table_insert_internal)
196         (g_hash_table_remove_internal)
197         (g_hash_table_foreach_remove_or_steal)
198         (g_hash_table_foreach)
199         (g_hash_table_find)
200         (g_hash_table_get_keys)
201         (g_hash_table_get_values): Use new data structure and algorithm,
202         fairly trivial changes.
203
204 2008-09-19  Tor Lillqvist  <tml@novell.com>
205
206         * glib-zip.in: Look for man pages in share/man.
207
208         * glib/gutils.c (_glib_get_dll_directory)
209         * glib/gspawn-win32.c (do_spawn_with_pipes): Be a bit less
210         restrictive, look for the helper programs in the same folder where
211         the GLib DLL is, not necessarily in a "bin" subfolder of the top
212         GLib installation folder.
213
214 2008-09-18  Matthias Clasen <mclasen@redhat.com>
215
216         * configure.in: Bump version to 2.19.0
217
218         * ChangeLog.pre-2-18: rotate ChangeLog
219         
220         * === branch for 2.18 ===