# HG changeset patch # User nenolod # Date 1172571351 28800 # Node ID 2ef492ad390417ba038aa9af60b388069fd14092 # Parent 72ec866d6b81be5cd0dc5fc89dbd68d7b5bb3532 [svn] - always make sure we are operating on a copy of the ini string diff -r 72ec866d6b81 -r 2ef492ad3904 ChangeLog --- a/ChangeLog Mon Feb 26 20:11:44 2007 -0800 +++ b/ChangeLog Tue Feb 27 02:15:51 2007 -0800 @@ -1,3 +1,22 @@ +2007-02-27 04:11:44 +0000 William Pitcock + revision [4182] + - update libaudacious gtkdoc configuration + - remove a kludge wrt gentoo+subversion.eclass which is no longer required. + + trunk/autogen.sh | 4 + trunk/doc/libaudacious/libaudacious-decl-list.txt | 65 --- + trunk/doc/libaudacious/libaudacious-decl.txt | 205 ------------ + trunk/doc/libaudacious/libaudacious-undocumented.txt | 2 + trunk/doc/libaudacious/libaudacious-unused.txt | 2 + trunk/doc/libaudacious/tmpl/dirbrowser.sgml | 12 + trunk/doc/libaudacious/tmpl/formatter.sgml | 52 --- + trunk/doc/libaudacious/tmpl/libaudacious-unused.sgml | 311 +++++++++++++++++++ + trunk/doc/libaudacious/tmpl/rcfile.sgml | 183 ----------- + trunk/doc/libaudacious/tmpl/titlestring.sgml | 86 ----- + trunk/doc/libaudacious/tmpl/xconvert.sgml | 6 + 11 files changed, 313 insertions(+), 615 deletions(-) + + 2007-02-27 03:06:45 +0000 George Averill revision [4180] - tuple reading now available through audtool with audacious_get_tuple_field_data() diff -r 72ec866d6b81 -r 2ef492ad3904 src/audacious/build_stamp.c --- a/src/audacious/build_stamp.c Mon Feb 26 20:11:44 2007 -0800 +++ b/src/audacious/build_stamp.c Tue Feb 27 02:15:51 2007 -0800 @@ -1,2 +1,2 @@ #include -const gchar *svn_stamp = "20070227-4180"; +const gchar *svn_stamp = "20070227-4182"; diff -r 72ec866d6b81 -r 2ef492ad3904 src/audacious/widgets/skin.c --- a/src/audacious/widgets/skin.c Mon Feb 26 20:11:44 2007 -0800 +++ b/src/audacious/widgets/skin.c Tue Feb 27 02:15:51 2007 -0800 @@ -1163,7 +1163,7 @@ if (inifile || default_hex) { if (inifile) { - value = read_ini_string(inifile, section, key); + value = g_strdup(read_ini_string(inifile, section, key)); if (value == NULL) { value = g_strdup(default_hex); }