changeset 2510:c8d6564f9c82 trunk

[svn] - only strip the subsong identifier if it is really a valid subsong identifier. closes #792.
author nenolod
date Mon, 12 Feb 2007 12:41:51 -0800
parents b1ec2cbe0d0c
children 0197fb284f79
files ChangeLog src/audacious/build_stamp.c src/audacious/input.c
diffstat 3 files changed, 11 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Feb 12 10:08:11 2007 -0800
+++ b/ChangeLog	Mon Feb 12 12:41:51 2007 -0800
@@ -1,3 +1,12 @@
+2007-02-12 18:08:11 +0000  Yoshiki Yazawa <yaz@cc.rim.or.jp>
+  revision [4028]
+  - bundled libid3tag.so has been renamed libaudid3tag.so to avoid conflict.
+  - install location of libaudid3tag.so also has been changed to $(plugindir) since bundled build depends on audacious vfs.
+  
+  trunk/src/libid3tag/Makefile |    4 +++-
+  1 file changed, 3 insertions(+), 1 deletion(-)
+
+
 2007-02-12 17:22:32 +0000  Michael Farber <01mf02@gmail.com>
   revision [4026]
   - more playlist cleanups (generalized code for playlist loading/saving 
--- a/src/audacious/build_stamp.c	Mon Feb 12 10:08:11 2007 -0800
+++ b/src/audacious/build_stamp.c	Mon Feb 12 12:41:51 2007 -0800
@@ -1,2 +1,2 @@
 #include <glib.h>
-const gchar *svn_stamp = "20070212-4026";
+const gchar *svn_stamp = "20070212-4028";
--- a/src/audacious/input.c	Mon Feb 12 10:08:11 2007 -0800
+++ b/src/audacious/input.c	Mon Feb 12 12:41:51 2007 -0800
@@ -429,7 +429,7 @@
 
     tmp = strrchr(tmp_uri, '?');
 
-    if (tmp != NULL)
+    if (tmp != NULL && g_ascii_isdigit(*(tmp + 1)))
         *tmp = '\0';
 
     fd = vfs_buffered_file_new_from_uri(tmp_uri);