From 4b355534c0e1bea1801393a18593c51b7f211278 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 20 Apr 2014 16:43:22 +0000 Subject: (svn r26476) -Fix: prevent comparing to NULL when strndup could not allocate memory --- src/ini_load.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/ini_load.cpp b/src/ini_load.cpp index 158ffa6a7..75a825453 100644 --- a/src/ini_load.cpp +++ b/src/ini_load.cpp @@ -63,7 +63,8 @@ IniGroup::IniGroup(IniLoadFile *parent, const char *name, size_t len) : next(NUL if (len == 0) len = strlen(name); this->name = strndup(name, len); - if (this->name != NULL) str_validate(this->name, this->name + len); + if (this->name == NULL) error("not enough memory to allocate group name"); + str_validate(this->name, this->name + len); this->last_item = &this->item; *parent->last_group = this; -- cgit v1.2.3-54-g00ecf