From: Michal MalĂ˝ Date: Mon, 4 Apr 2016 13:40:33 +0000 (+0200) Subject: Check for failed allocation, improve coding style consistency X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=8c569a96d886179c5ccc9772755f9dd09c88b60e;p=libHPCS.git Check for failed allocation, improve coding style consistency --- diff --git a/libhpcs.c b/libhpcs.c index 7975784..a3ee768 100644 --- a/libhpcs.c +++ b/libhpcs.c @@ -1143,7 +1143,11 @@ static enum HPCS_ParseCode __read_string_at_offset_v2(FILE* datafile, const HPCS if (str_length == 0) { *result = malloc(sizeof(char)); - *result[0] = 0; + + if (*result == NULL) + return PARSE_E_NO_MEM; + + (*result)[0] = '\0'; return PARSE_OK; }