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:
- 7:60f5dc3467ff
- Parent:
- 5:bfeb0882bd82
- Child:
- 8:f128b10dfab1
--- a/IniManager.cpp Sun Apr 20 13:36:09 2014 +0000
+++ b/IniManager.cpp Thu May 22 16:09:43 2014 +0000
@@ -27,6 +27,8 @@
INI::INI(const char * file)
: iniFile(0)
{
+ SetFile(file);
+#if 0
if (file) {
iniFile = (char *)malloc(strlen(file)+1);
if (iniFile)
@@ -34,6 +36,7 @@
else
iniFile = NULL;
}
+#endif
}