[Nasm-bugs] [Bug 3392569] Compiling jpeg-turbo again (20190606)

noreply-nasm at gorcunov.org noreply-nasm at gorcunov.org
Sat Aug 17 03:18:42 PDT 2019


https://bugzilla.nasm.us/show_bug.cgi?id=3392569

--- Comment #5 from Michael Murashkin <ragnarokkx at inbox.ru> ---
I've just built turbo-jpeg with nasm 20190809, it was a success, and the app
seems to work too.

Personally I decided to add

static Token *delete_Token(Token * t)
{
    Token *next = t->next;
    nasm_free(t->text);
    memset(t, 0, sizeof(Token)); //<-- this line
    t->next = freeTokens;
    freeTokens = t;
    return next;
}

I don't know if it's really necessary, but I think it won't do any harm.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are on the CC list for the bug.


More information about the Nasm-bugs mailing list