From: Brian Paul Date: Mon, 19 Jan 2004 17:41:02 +0000 (+0000) Subject: replace CALLOC with MALLOC in _mesa_new_texture_object() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9c0b83556dae35cf7260567f30fc156efa8c9742;p=mesa.git replace CALLOC with MALLOC in _mesa_new_texture_object() --- diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c index 35323e2b72a..98e49cde672 100644 --- a/src/mesa/main/texobj.c +++ b/src/mesa/main/texobj.c @@ -64,7 +64,7 @@ struct gl_texture_object * _mesa_new_texture_object( GLcontext *ctx, GLuint name, GLenum target ) { struct gl_texture_object *obj; - obj = CALLOC_STRUCT(gl_texture_object); + obj = MALLOC_STRUCT(gl_texture_object); _mesa_initialize_texture_object(obj, name, target); return obj; }