summaryrefslogtreecommitdiff
path: root/src/ini.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ini.cpp')
-rw-r--r--src/ini.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ini.cpp b/src/ini.cpp
index f249f7b93..d79189bd2 100644
--- a/src/ini.cpp
+++ b/src/ini.cpp
@@ -114,7 +114,7 @@ IniGroup *IniFile::GetGroup(const char *name, size_t len)
/* does it exist already? */
for (IniGroup *group = this->group; group != NULL; group = group->next) {
- if (!memcmp(group->name, name, len) && group->name[len] == 0) {
+ if (!strncmp(group->name, name, len) && group->name[len] == 0) {
return group;
}
}
@@ -133,7 +133,7 @@ void IniFile::RemoveGroup(const char *name)
/* does it exist already? */
for (group = this->group; group != NULL; prev = group, group = group->next) {
- if (memcmp(group->name, name, len) == 0) {
+ if (strncmp(group->name, name, len) == 0) {
break;
}
}