|
From: CVS C. to T. <the...@li...> - 2016-11-12 15:53:36
|
Revision: 734
http://sourceforge.net/p/themis/code/734
Author: mark_hellegers
Date: 2016-11-12 15:53:35 +0000 (Sat, 12 Nov 2016)
Log Message:
-----------
BHandlers don't respond to B_QUIT_REQUESTED. Need to delete them.
Got broken by my rewrite of the plugin manager a while back. Oops.
Modified Paths:
--------------
trunk/themis/common/plugman.cpp
Modified: trunk/themis/common/plugman.cpp
===================================================================
--- trunk/themis/common/plugman.cpp 2016-10-30 09:06:00 UTC (rev 733)
+++ trunk/themis/common/plugman.cpp 2016-11-12 15:53:35 UTC (rev 734)
@@ -227,9 +227,7 @@
if (aPlugin->IsHandler()) {
RemoveHandler(aPlugin->Handler());
- BMessenger messenger(aPlugin->Handler());
- // Use a synchronous message to quit. Don't care about the result?
- messenger.SendMessage(&quitMessage, &replyMessage);
+ delete aPlugin;
}
else if (aPlugin->IsLooper()) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|