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.
Dependents: IM920_sample IM920_SDlog IM920_sample IM920_sample3 ... more
Revision 5:2fd9b1725283, committed 2015-04-24
- Comitter:
- idealtechlab
- Date:
- Fri Apr 24 03:59:13 2015 +0000
- Parent:
- 4:ba939555ed35
- Commit message:
- fix buffer over run
Changed in this revision
| IM920_msg.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/IM920_msg.cpp Thu Jan 29 06:16:10 2015 +0000
+++ b/IM920_msg.cpp Fri Apr 24 03:59:13 2015 +0000
@@ -31,8 +31,8 @@
default:
if (len < sizeof(_state.buf) - 1) {
_state.buf[len] = c;
+ len ++;
}
- len ++;
break;
}
break;