aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-09-09 11:50:22 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-09-09 11:50:22 +0000
commitfce3036757a1d5cd213c5eab69efd28dbffbe8e8 (patch)
tree623e5b9c614a6deb67d8ba2cccf5afc250f4e9e9 /src
parentfbfb3e875065a5b374d78f8cbd6bfd195e88fccd (diff)
downloadqmmp-fce3036757a1d5cd213c5eab69efd28dbffbe8e8.tar.gz
qmmp-fce3036757a1d5cd213c5eab69efd28dbffbe8e8.tar.bz2
qmmp-fce3036757a1d5cd213c5eab69efd28dbffbe8e8.zip
fixed warnings about invalid parent thread
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3700 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src')
-rw-r--r--src/qmmp/qmmpaudioengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qmmp/qmmpaudioengine.cpp b/src/qmmp/qmmpaudioengine.cpp
index 0b13c0ab0..e6196f89d 100644
--- a/src/qmmp/qmmpaudioengine.cpp
+++ b/src/qmmp/qmmpaudioengine.cpp
@@ -558,7 +558,7 @@ void QmmpAudioEngine::sendMetaData()
OutputWriter *QmmpAudioEngine::createOutput()
{
- OutputWriter *output = new OutputWriter(this);
+ OutputWriter *output = new OutputWriter(0);
if (!output->initialize(m_ap.sampleRate(), m_ap.channels(), m_ap.format()))
{
delete output;