From 76f6fcfad68d88728bb1a04b193029aa9e46e976 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 20 Dec 2008 20:28:04 +0000 Subject: Fix deregistration of Jack ports, associated memory leaks. Hopefully a fix for #294 and #305). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1877 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/DuplexPort.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/engine/DuplexPort.cpp') diff --git a/src/engine/DuplexPort.cpp b/src/engine/DuplexPort.cpp index ec521e82..3ede6969 100644 --- a/src/engine/DuplexPort.cpp +++ b/src/engine/DuplexPort.cpp @@ -33,13 +33,13 @@ namespace Ingen { DuplexPort::DuplexPort( NodeImpl* parent, - const string& name, - uint32_t index, - uint32_t poly, - DataType type, - const Raul::Atom& value, - size_t buffer_size, - bool is_output) + const string& name, + uint32_t index, + uint32_t poly, + DataType type, + const Raul::Atom& value, + size_t buffer_size, + bool is_output) : PortImpl(parent, name, index, poly, type, value, buffer_size) , InputPort(parent, name, index, poly, type, value, buffer_size) , OutputPort(parent, name, index, poly, type, value, buffer_size) -- cgit v1.2.1