diff options
author | LarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b> | 2005-02-12 10:04:58 +0000 |
---|---|---|
committer | LarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b> | 2005-02-12 10:04:58 +0000 |
commit | a5bdba18cb2c8f760c99d012267bd9278ce74e09 (patch) | |
tree | f929db8efe604d9b837b0cffde273bb79a23452c | |
parent | 0497728d48f4f1adf2d84ed46f289669dcd12676 (diff) | |
download | vdr-plugin-muggle-a5bdba18cb2c8f760c99d012267bd9278ce74e09.tar.gz vdr-plugin-muggle-a5bdba18cb2c8f760c99d012267bd9278ce74e09.tar.bz2 |
corrected bug in GdFindFile
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@481 e10066b5-e1e2-0310-b819-94efdf66514b
-rw-r--r-- | mg_db.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -658,7 +658,7 @@ GdFindFile( const char* tld, string mp3file ) { char *s; if( (s = mg_readline(p) ) != 0) - result = string(tld) + string(s); + result = string(s); pclose(p); } |