author | harlekin <harlekin> | 2002-04-20 21:23:38 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-04-20 21:23:38 (UTC) |
commit | 679083ca18ddbf4762578d1aa010203ea188586c (patch) (side-by-side diff) | |
tree | eada9fcd708aedbbe8c6ef207942125ce4ad97a9 | |
parent | b452044ec1b3327f25f8552045b4229c8af39bf7 (diff) | |
download | opie-679083ca18ddbf4762578d1aa010203ea188586c.zip opie-679083ca18ddbf4762578d1aa010203ea188586c.tar.gz opie-679083ca18ddbf4762578d1aa010203ea188586c.tar.bz2 |
no / needed at the url end
-rw-r--r-- | core/multimedia/opieplayer/libmad/libmadplugin.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/core/multimedia/opieplayer/libmad/libmadplugin.cpp b/core/multimedia/opieplayer/libmad/libmadplugin.cpp index 4665408..7978805 100644 --- a/core/multimedia/opieplayer/libmad/libmadplugin.cpp +++ b/core/multimedia/opieplayer/libmad/libmadplugin.cpp @@ -246,3 +246,3 @@ int LibMadPlugin::http_open(const QString& path ) { char filename[PATH_MAX]; - char c; + // char c; char *arg =strdup(path.latin1()); @@ -260,6 +260,9 @@ int LibMadPlugin::http_open(const QString& path ) { host = arg + strlen("http://"); - if ((request = strchr(host, '/')) == NULL) { - qDebug("Url syntax 2error %s", host); - return (0); - } + + // we need to think of something better than that + //if ((request = strchr(host, '/')) == NULL) { + // qDebug("Url syntax 2error %s", host); + // return (0); + // } + *request++ = 0; |