diff framework/MainWindowBase.cpp @ 144:675443abbc05

Various fixes: * Fix handling of HTTP redirects (avoiding crashes... I hope) * Fix failure to delete FFT models when a feature extraction model transformer was abandoned (also a cause of crashes in the past) * Fix deadlock when said transform was abandoned before its source model was ready because the session was being cleared (and so the source model would never be ready)
author Chris Cannam
date Fri, 28 Nov 2008 13:36:13 +0000
parents 9ef382913c17
children 937456ffe33e
line wrap: on
line diff
--- a/framework/MainWindowBase.cpp	Tue Nov 25 17:46:02 2008 +0000
+++ b/framework/MainWindowBase.cpp	Fri Nov 28 13:36:13 2008 +0000
@@ -1461,6 +1461,7 @@
         connect(&dialog, SIGNAL(showing()), this, SIGNAL(hideSplash()));
 
         FileSource audioSource(audioUrl, &dialog);
+
         if (!audioSource.isAvailable()) {
             std::cerr << "MainWindowBase::openSessionFromRDF: Cannot open audio URL \"" << audioUrl.toStdString() << "\" referred to in RDF, can't open a session without audio" << std::endl;
             return FileOpenFailed;