Ticket #7093: lists.c.patch

File lists.c.patch, 483 bytes (added by Steven Watanabe, 10 years ago)

Patch to fix the problem

  • tools/build/v2/engine/lists.c

     
    1414#include <assert.h>
    1515
    1616
    17 struct freelist_node { struct freelist_node * next; };
     17struct freelist_node { union { struct freelist_node * next; LIST allow_aliasing; }; };
    1818
    1919static struct freelist_node * freelist[ 32 ];  /* junkpile for list_dealloc() */
    2020