disable free() until other issues can be fixed...

This commit is contained in:
Brian 2007-03-26 09:24:30 -06:00
parent b9fbedd601
commit e71c34aaa1

View file

@ -144,7 +144,9 @@ _slang_free_ir(slang_ir_node *n)
if (n->Store) {
n->Store->RefCount--;
if (n->Store->RefCount == 0) {
#if 0
free(n->Store);
#endif
n->Store = NULL;
}
}