diff options
| author | LarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b> | 2005-02-12 10:00:55 +0000 |
|---|---|---|
| committer | LarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b> | 2005-02-12 10:00:55 +0000 |
| commit | cff4425a67c31005439a1733d59e4563003e3282 (patch) | |
| tree | 7f26d43a7b42d4e49eaaab17df72089a7e4cf67d | |
| parent | a7334725b5bf6ba7ef07677370378aaf5ada87ac (diff) | |
| download | vdr-plugin-muggle-cff4425a67c31005439a1733d59e4563003e3282.tar.gz vdr-plugin-muggle-cff4425a67c31005439a1733d59e4563003e3282.tar.bz2 | |
corrected error in GD compatibility function
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk@480 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 2a3878c..99fc27b 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 = tld + s; + result = string(tld) + string(s); pclose(p); } |
