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: Smart-WiFly-WebServer SignalGenerator WattEye X10Svr
Diff: IniManager.cpp
- Revision:
- 25:1362b843de86
- Parent:
- 24:ba5fa9548f59
- Child:
- 26:e8d7b09a77a3
- Child:
- 27:611ffb74fd38
--- a/IniManager.cpp Wed Apr 11 00:28:03 2018 +0000
+++ b/IniManager.cpp Sun Nov 11 22:56:13 2018 +0000
@@ -84,7 +84,8 @@
if (pRBrkt) {
*pRBrkt = '\0';
if (returnNext) {
- if (strlen(pStart) < bufferSize) {
+ // Guard against "[]" which would cause it to recycle from the start
+ if (strlen(pStart) > 0 && strlen(pStart) < bufferSize) {
strcpy(buffer, pStart);
found = true;
break;