Project

General

Profile

« Previous | Next » 

Revision 19e77994

Added by Leszek Koltunski almost 4 years ago

Fix for a crash when exiting an app:

Activity.onPause() -> MessageSender.stopSending sets mThis to null, then a last message gets sent and a crash in newMessage().

Fix this by

1) making the Message inner class static (so that we can create a new one without a reference to mThis)
2) move the locking from mThis (which is not final) to a specialized final Object mLock.

  • added
  • modified
  • copied
  • renamed
  • deleted