From 16edd7b1272e91a5ef28e8b9211b8d5721fafe23 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 4 Feb 2010 23:53:37 +0000 Subject: Fix a bunch of memory leaks. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2429 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/PortImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/engine/PortImpl.cpp') diff --git a/src/engine/PortImpl.cpp b/src/engine/PortImpl.cpp index 22492378..5766e80f 100644 --- a/src/engine/PortImpl.cpp +++ b/src/engine/PortImpl.cpp @@ -90,7 +90,7 @@ PortImpl::PortImpl(BufferFactory& bufs, PortImpl::~PortImpl() { for (uint32_t v = 0; v < _poly; ++v) - _buffers->at(v).reset(NULL); // old boost is missing this + _buffers->at(v).reset(NULL); // really old boost is missing this //_buffers->at(v).reset(); // old boost is missing this delete _buffers; -- cgit v1.2.1