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 | b4ab2bbd71bbec6a742aa60041ded24572f6f9f4 (patch) | |
| tree | f5cfc6e7df4c7b3d5a388412d027e1eedf1a29a4 | |
| parent | cff4425a67c31005439a1733d59e4563003e3282 (diff) | |
| download | vdr-plugin-muggle-b4ab2bbd71bbec6a742aa60041ded24572f6f9f4.tar.gz vdr-plugin-muggle-b4ab2bbd71bbec6a742aa60041ded24572f6f9f4.tar.bz2 | |
corrected bug in GdFindFile
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk@481 e10066b5-e1e2-0310-b819-94efdf66514b
| -rw-r--r-- | muggle-plugin/mg_db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/muggle-plugin/mg_db.c b/muggle-plugin/mg_db.c index 99fc27b..8249647 100644 --- a/muggle-plugin/mg_db.c +++ b/muggle-plugin/mg_db.c @@ -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); } |
