changeset 2587:2ef492ad3904 trunk

[svn] - always make sure we are operating on a copy of the ini string
author nenolod
date Tue, 27 Feb 2007 02:15:51 -0800
parents 72ec866d6b81
children c51a5a735f65
files ChangeLog src/audacious/build_stamp.c src/audacious/widgets/skin.c
diffstat 3 files changed, 21 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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 <nenolod@sacredspiral.co.uk>
+  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 <nhjm449@gmail.com>
   revision [4180]
   - tuple reading now available through audtool with audacious_get_tuple_field_data()
--- 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 <glib.h>
-const gchar *svn_stamp = "20070227-4180";
+const gchar *svn_stamp = "20070227-4182";
--- 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);
             }