summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/libmad/libmadplugin.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/core/multimedia/opieplayer/libmad/libmadplugin.cpp b/core/multimedia/opieplayer/libmad/libmadplugin.cpp
index 8b692ef..c744c6d 100644
--- a/core/multimedia/opieplayer/libmad/libmadplugin.cpp
+++ b/core/multimedia/opieplayer/libmad/libmadplugin.cpp
@@ -437,7 +437,13 @@ bool LibMadPlugin::open( const QString& path ) {
if (path.left( 4 ) == "http" ) {
+ qDebug("Test2");
// in case of any error we get 0 here
- if ( !(http_open(path)==0) ) {
+ if ( !(http_open(path) == 0) ) {
+ qDebug("Test3");
d->input.fd = http_open(path);
+ } else {
+ qDebug("Test5");
+ return FALSE;
}
} else {
+ qDebug("Test4");
d->input.path = path.latin1();
@@ -448,3 +454,3 @@ bool LibMadPlugin::open( const QString& path ) {
if (d->input.fd == -1) {
-// qDebug("error opening %s", d->input.path );
+ qDebug("error opening %s", d->input.path );
return FALSE;