Revert 29cb0bb1b39f4e3c9e013993457e85fce14f5142

Redundant call on nonsmart compilers doesn't
worth it in compare with two assignment operations.

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2010-11-11 23:08:14 +03:00
parent 49e8f698fc
commit eb7bf9811f

View File

@ -1396,7 +1396,10 @@ static char *detoken(Token * tlist, bool expand_locals)
*/
static inline Line *new_Line(void)
{
return (Line *)nasm_zalloc(sizeof(Line));
Line *l = nasm_malloc(sizeof(Line));
l->next = NULL;
l->first = NULL;
return l;
}