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

View File

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