Fix previous commit (reset, not zero shared_ptr)

This commit is contained in:
Robin Gareus
2020-10-06 05:24:34 +02:00
parent 0f7850b0b7
commit 0fac5c9c2c

View File

@@ -205,7 +205,7 @@ PluginEqGui::stop_listening ()
if (_plugin) {
_plugin->deactivate ();
_plugin->drop_references ();
_plugin = 0;
_plugin.reset ();
}
}