[glib/g-property: 20/25] gproperty: Return a copy of the interned string when canonicalizing
- From: Emmanuele Bassi <ebassi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib/g-property: 20/25] gproperty: Return a copy of the interned string when canonicalizing
- Date: Wed, 17 Aug 2011 13:34:32 +0000 (UTC)
commit 3a65010b8d2f412c3fdc1e810d42c791353ff837
Author: Emmanuele Bassi <ebassi linux intel com>
Date: Thu Jul 7 12:52:05 2011 +0100
gproperty: Return a copy of the interned string when canonicalizing
The API contract says that we might modify the string, so we need to
copy it to avoid a conditional g_free().
gobject/gproperty.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gobject/gproperty.c b/gobject/gproperty.c
index 671a370..73072d5 100644
--- a/gobject/gproperty.c
+++ b/gobject/gproperty.c
@@ -3237,7 +3237,7 @@ g_property_canonicalize_name (const gchar *name)
g_return_val_if_fail (name != NULL, NULL);
if (is_canonical (name))
- return g_intern_string (name);
+ return g_strdup (g_intern_string (name));
retval = g_strdup (name);
canonicalize_name (retval);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]