Bluetooth Plugin Memory Leak
----------------------------
Key: CB-366
URL: https://issues.apache.org/jira/browse/CB-366
Project: Apache Callback
Issue Type: Bug
Components: Android
Affects Versions: 1.4.0
Reporter: Luis Cortes
Assignee: Joe Bowser
Minor leak detected because the looper object was not released. a simple fix
can be applied at the end of the "execute" routine before the return will clean
this up.
if ( Looper.myLooper() != null)
{
// Log.d("BluetoothPlugin", "Quit looper ...");
Looper.myLooper().quit();
}
return result;
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira