# HG changeset patch # User nenolod # Date 1172676597 28800 # Node ID 3c1e835ebd68dca37bd8e5817e99498c0f25ae6f # Parent 5d8556c9949c29a7d5b409f272663431f4db5532 [svn] - only claim URLs that actually belong to us. Closes #783. diff -r 5d8556c9949c -r 3c1e835ebd68 ChangeLog --- a/ChangeLog Wed Feb 28 07:01:26 2007 -0800 +++ b/ChangeLog Wed Feb 28 07:29:57 2007 -0800 @@ -1,3 +1,11 @@ +2007-02-28 15:01:26 +0000 William Pitcock + revision [1598] + - handle condition where track_name is not there, but stream_name is. + + trunk/src/madplug/input.c | 14 ++++++++++++-- + 1 file changed, 12 insertions(+), 2 deletions(-) + + 2007-02-28 12:38:53 +0000 William Pitcock revision [1596] - vtx input plugin based on a submission from Pavel Vymetalek. diff -r 5d8556c9949c -r 3c1e835ebd68 src/console/Audacious_Driver.cxx --- a/src/console/Audacious_Driver.cxx Wed Feb 28 07:01:26 2007 -0800 +++ b/src/console/Audacious_Driver.cxx Wed Feb 28 07:29:57 2007 -0800 @@ -102,7 +102,7 @@ // extract track number gchar* args = strchr( path, '?' ); // TODO: use strrchr()? - if ( args ) + if ( args && g_ascii_isdigit( args + 1 ) ) { *args = '\0'; // TODO: use func with better error reporting, and perhaps don't