Point to g_hash_table_lookup_extended() for differentiation between

Sun Aug 29 23:58:38 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/ghash.c (g_hash_table_lookup): Point to
	g_hash_table_lookup_extended() for differentiation between
	not-found and value-is-NULL.  (#150960, Morten Welinder)
This commit is contained in:
Matthias Clasen 2004-08-30 03:59:59 +00:00 committed by Matthias Clasen
parent f04024e32d
commit fd92ac8f52
6 changed files with 34 additions and 1 deletions

View File

@ -1,3 +1,9 @@
Sun Aug 29 23:58:38 2004 Matthias Clasen <maclas@gmx.de>
* glib/ghash.c (g_hash_table_lookup): Point to
g_hash_table_lookup_extended() for differentiation between
not-found and value-is-NULL. (#150960, Morten Welinder)
2004-08-27 Matthias Clasen <mclasen@redhat.com>
Fix #151193, Stepan Kasal:

View File

@ -1,3 +1,9 @@
Sun Aug 29 23:58:38 2004 Matthias Clasen <maclas@gmx.de>
* glib/ghash.c (g_hash_table_lookup): Point to
g_hash_table_lookup_extended() for differentiation between
not-found and value-is-NULL. (#150960, Morten Welinder)
2004-08-27 Matthias Clasen <mclasen@redhat.com>
Fix #151193, Stepan Kasal:

View File

@ -1,3 +1,9 @@
Sun Aug 29 23:58:38 2004 Matthias Clasen <maclas@gmx.de>
* glib/ghash.c (g_hash_table_lookup): Point to
g_hash_table_lookup_extended() for differentiation between
not-found and value-is-NULL. (#150960, Morten Welinder)
2004-08-27 Matthias Clasen <mclasen@redhat.com>
Fix #151193, Stepan Kasal:

View File

@ -1,3 +1,9 @@
Sun Aug 29 23:58:38 2004 Matthias Clasen <maclas@gmx.de>
* glib/ghash.c (g_hash_table_lookup): Point to
g_hash_table_lookup_extended() for differentiation between
not-found and value-is-NULL. (#150960, Morten Welinder)
2004-08-27 Matthias Clasen <mclasen@redhat.com>
Fix #151193, Stepan Kasal:

View File

@ -1,3 +1,9 @@
Sun Aug 29 23:58:38 2004 Matthias Clasen <maclas@gmx.de>
* glib/ghash.c (g_hash_table_lookup): Point to
g_hash_table_lookup_extended() for differentiation between
not-found and value-is-NULL. (#150960, Morten Welinder)
2004-08-27 Matthias Clasen <mclasen@redhat.com>
Fix #151193, Stepan Kasal:

View File

@ -212,7 +212,10 @@ g_hash_table_lookup_node (GHashTable *hash_table,
* @hash_table: a #GHashTable.
* @key: the key to look up.
*
* Looks up a key in a #GHashTable.
* Looks up a key in a #GHashTable. Note that this function cannot
* distinguish between a key that is not present and one which is present
* and has the value %NULL. If you need this distinction, use
* g_hash_table_lookup_extended().
*
* Return value: the associated value, or %NULL if the key is not found.
**/