diff options
Diffstat (limited to 'src/engine/PortImpl.cpp')
-rw-r--r-- | src/engine/PortImpl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/engine/PortImpl.cpp b/src/engine/PortImpl.cpp index ce4fedbf..62206710 100644 --- a/src/engine/PortImpl.cpp +++ b/src/engine/PortImpl.cpp @@ -88,7 +88,8 @@ PortImpl::PortImpl(BufferFactory& bufs, PortImpl::~PortImpl() { for (uint32_t v = 0; v < _poly; ++v) - _buffers->at(v).reset(); + _buffers->at(v).reset(NULL); // old boost is missing this + //_buffers->at(v).reset(); // old boost is missing this delete _buffers; } |