Skip to content
This repository has been archived by the owner on Feb 13, 2019. It is now read-only.

Commit

Permalink
another compile fix for gcc-3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cannam committed Nov 15, 2004
1 parent 5581927 commit 7c3e5cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 5 additions & 1 deletion dssi-vst.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,11 @@ DSSIVSTPluginInstance::DSSIVSTPluginInstance(std::string dllName,

m_controlPortCount = m_plugin->getParameterCount();
m_controlPorts = new LADSPA_Data*[m_controlPortCount];
m_controlPortsSaved = new LADSPA_Data[m_controlPortCount](NO_CONTROL_DATA);
m_controlPortsSaved = new LADSPA_Data[m_controlPortCount];

for (unsigned long i = 0; i < m_controlPortCount; ++i) {
m_controlPortsSaved[i] = NO_CONTROL_DATA;
}

m_audioInCount = m_plugin->getInputCount();
m_audioIns = new LADSPA_Data*[m_audioInCount];
Expand Down
1 change: 0 additions & 1 deletion remotepluginclient.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
#include <string>
#include <vector>
#include <sys/shm.h>
#include <errno.h>

// Any of the methods in this file, including constructors, should be
// considered capable of throwing RemotePluginClosedException. Do not
Expand Down

0 comments on commit 7c3e5cb

Please sign in to comment.