-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 @@ -241,13 +241,13 @@ int LibMadPlugin::http_open(const QString& path ) { char *host; int port; char *request; int tcp_sock; char http_request[PATH_MAX]; char filename[PATH_MAX]; - char c; + // char c; char *arg =strdup(path.latin1()); QString errorMsg; /* Check for URL syntax */ // if (strncmp(arg, "http://", strlen("http://"))) { @@ -255,16 +255,19 @@ int LibMadPlugin::http_open(const QString& path ) { // return (0); // } qDebug("Parse URL"); port = 80; 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; if (strchr(host, ':') != NULL) /* port is specified */ { port = atoi(strchr(host, ':') + 1); *strchr(host, ':') = 0; |