summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b>2005-02-12 10:00:55 +0000
committerLarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b>2005-02-12 10:00:55 +0000
commit0497728d48f4f1adf2d84ed46f289669dcd12676 (patch)
tree644347b830c594f6885ecedcc94e5bae35f00185
parent8f03ced96dbea76010525ca596faa1d86bd4f56d (diff)
downloadvdr-plugin-muggle-0497728d48f4f1adf2d84ed46f289669dcd12676.tar.gz
vdr-plugin-muggle-0497728d48f4f1adf2d84ed46f289669dcd12676.tar.bz2
corrected error in GD compatibility function
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@480 e10066b5-e1e2-0310-b819-94efdf66514b
-rw-r--r--mg_db.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mg_db.c b/mg_db.c
index 2a3878c..99fc27b 100644
--- a/mg_db.c
+++ b/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);
}