mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-15 20:25:12 +01:00
Bug 536158 – also bump GHashTable version when a node is removed via
g_hash_table_iter_remove()/g_hash_table_iter_steal() * glib/ghash.c (iter_remove_or_steal): Bump the hash table version. Patch by Jean-Yves Lefort svn path=/trunk/; revision=6993
This commit is contained in:
parent
0e51f02ccb
commit
cc1ad36f99
@ -1,3 +1,11 @@
|
||||
2008-06-10 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Bug 536158 – also bump GHashTable version when a node is removed via
|
||||
g_hash_table_iter_remove()/g_hash_table_iter_steal()
|
||||
|
||||
* glib/ghash.c (iter_remove_or_steal): Bump the hash table
|
||||
version. Patch by Jean-Yves Lefort
|
||||
|
||||
2008-06-07 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* glib/gstdio.c (g_access): Define X_OK if necessary (MSVC).
|
||||
|
@ -530,6 +530,11 @@ iter_remove_or_steal (RealIter *ri, gboolean notify)
|
||||
g_slice_free (GHashNode, node);
|
||||
|
||||
ri->hash_table->nnodes--;
|
||||
|
||||
#ifndef G_DISABLE_ASSERT
|
||||
ri->version++;
|
||||
ri->hash_table->version++;
|
||||
#endif
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user