Use _mesa_exec_free for fp->func.

This commit is contained in:
Keith Whitwell
2005-11-24 10:59:10 +00:00
parent 2a76d952b8
commit 96bf6abb66

View File

@@ -494,14 +494,14 @@ void _tnl_free_vertices( GLcontext *ctx )
for (fp = vtx->fastpath ; fp ; fp = tmp) { for (fp = vtx->fastpath ; fp ; fp = tmp) {
tmp = fp->next; tmp = fp->next;
FREE(fp->attr); FREE(fp->attr);
/* XXX Can we be sure that fp->func points to memory that was
* allocated with _mesa_exec_malloc()? I think it's possible that /* KW: At the moment, fp->func is constrained to be allocated by
* the pointer can point to an ordinary C function. * _mesa_exec_alloc(), as the hardwired fastpaths in
* Just disable this for the time being. See bug 5131. * t_vertex_generic.c are handled specially. It would be nice
* to unify them, but this probably won't change until this
* module gets another overhaul.
*/ */
#if 0
_mesa_exec_free((void *) fp->func); _mesa_exec_free((void *) fp->func);
#endif
FREE(fp); FREE(fp);
} }