(svn r26476) -Fix: prevent comparing to NULL when strndup could not allocate memory

This commit is contained in:
rubidium
2014-04-20 16:43:22 +00:00
parent 101b982263
commit aa7456e397

View File

@@ -63,7 +63,8 @@ IniGroup::IniGroup(IniLoadFile *parent, const char *name, size_t len) : next(NUL
if (len == 0) len = strlen(name); if (len == 0) len = strlen(name);
this->name = strndup(name, len); 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; this->last_item = &this->item;
*parent->last_group = this; *parent->last_group = this;