Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Revision 1:6f8ca7b70778, committed 2013-04-26
- Comitter:
- Byrn
- Date:
- Fri Apr 26 11:31:13 2013 +0000
- Parent:
- 0:1798e1bf583a
- Commit message:
- Fixed a memory leak (I am an idiot).
Changed in this revision
DigitalOutEx.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/DigitalOutEx.cpp Fri Apr 26 10:31:31 2013 +0000 +++ b/DigitalOutEx.cpp Fri Apr 26 11:31:13 2013 +0000 @@ -25,8 +25,11 @@ void DigitalOutEx::stop_flashing() { if (!_flashing) return; - _flashThread->terminate(); - _flashThread = NULL; + if (_flashThread != NULL) { + _flashThread->terminate(); + delete _flashThread; + _flashThread = NULL; + } _flashing = 0; }