|
From: | grischka |
Subject: | Re: [Tinycc-devel] trying tinycc on several hundred projects (results) |
Date: | Fri, 28 Mar 2014 20:13:41 +0100 |
User-agent: | Thunderbird 2.0.0.23 (Windows/20090812) |
Domingo Alvarez Duarte wrote:
Fix a incorrect size for malloc. ----------------------------------- libtcc.c ----------------------------------- index 601999e..9f486f3 100644 @@ -328,11 +328,11 @@ static void tcc_split_path(TCCState *s, void ***p_ary, int *p_nb_ary, const charST_FUNC Section *new_section(TCCState *s1, const char *name, int sh_type, int sh_flags){ Section *sec;- sec = tcc_mallocz(sizeof(Section) + strlen(name));+ sec = tcc_mallocz(sizeof(Section) + strlen(name)+1);
This was not incorrect. --- grischka
[Prev in Thread] | Current Thread | [Next in Thread] |