Fix memory leak in cdc-connector

The Closer default value was wrong.
This commit is contained in:
Markus Mäkelä 2018-08-27 12:00:28 +03:00
parent 2c54f28fae
commit 02a65f311a
No known key found for this signature in database
GPG Key ID: 72D48FCE664F7B19

View File

@ -122,7 +122,7 @@ public:
Closer(T t):
m_t(t),
m_close(false)
m_close(true)
{
}