* shell/ev-metadata-manager.c: (ev_metadata_manager_set_string): Don't
copy the string twice. Bug #569231.
svn path=/trunk/; revision=3384
+2009-01-26 Christian Persch <chpe@gnome.org>
+
+ * shell/ev-metadata-manager.c: (ev_metadata_manager_set_string): Don't
+ copy the string twice. Bug #569231.
+
2009-01-26 Christian Persch <chpe@gnome.org>
* libdocument/ev-file-helpers.c: (ev_dir_ensure_exists),
GValue val = { 0, };
g_value_init (&val, G_TYPE_STRING);
- g_value_set_string (&val, value);
+ g_value_set_static_string (&val, value);
ev_metadata_manager_set (uri, key, &val);