OSDN Git Service

disable free() until other issues can be fixed...
authorBrian <brian@yutani.localnet.net>
Mon, 26 Mar 2007 15:24:30 +0000 (09:24 -0600)
committerBrian <brian@yutani.localnet.net>
Mon, 26 Mar 2007 15:24:30 +0000 (09:24 -0600)
src/mesa/shader/slang/slang_ir.c

index 59aac73..14a7b69 100644 (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;
       }
    }