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:
Matthias Clasen 2008-06-10 17:03:15 +00:00
parent 0e51f02ccb
commit cc1ad36f99
2 changed files with 13 additions and 0 deletions

View File

@ -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).

View File

@ -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
}
/**