aboutsummaryrefslogtreecommitdiff
path: root/mesalib/src/mesa/program/nvvertparse.c
diff options
context:
space:
mode:
Diffstat (limited to 'mesalib/src/mesa/program/nvvertparse.c')
-rw-r--r--mesalib/src/mesa/program/nvvertparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesalib/src/mesa/program/nvvertparse.c b/mesalib/src/mesa/program/nvvertparse.c
index 7b46bef91..62b27b9f4 100644
--- a/mesalib/src/mesa/program/nvvertparse.c
+++ b/mesalib/src/mesa/program/nvvertparse.c
@@ -1293,7 +1293,7 @@ _mesa_parse_nv_vertex_program(struct gl_context *ctx, GLenum dstTarget,
GLubyte *programString;
/* Make a null-terminated copy of the program string */
- programString = (GLubyte *) MALLOC(len + 1);
+ programString = (GLubyte *) malloc(len + 1);
if (!programString) {
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glLoadProgramNV");
return;