updates
Dependencies: BLE_API mbed-dev-bin nRF51822
Fork of microbit-dal-eddystone by
Revision 7:a4042bbb7f8b, committed 2016-04-07
- Comitter:
- LancasterUniversity
- Date:
- Thu Apr 07 23:39:33 2016 +0100
- Parent:
- 6:2e1c2e0d8c7a
- Child:
- 8:ec4465853952
- Commit message:
- Synchronized with git rev b5193dbc
Author: Joe Finney
microbit: BUGFIX - missing NULL initialisation in templated MicroBitListener
Changed in this revision
inc/core/MicroBitListener.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/inc/core/MicroBitListener.h Thu Apr 07 23:39:31 2016 +0100 +++ b/inc/core/MicroBitListener.h Thu Apr 07 23:39:33 2016 +0100 @@ -162,7 +162,8 @@ this->cb_method = new MemberFunctionCallback(object, method); this->cb_arg = NULL; this->flags = flags | MESSAGE_BUS_LISTENER_METHOD; + this->evt_queue = NULL; this->next = NULL; } -#endif +#endif \ No newline at end of file