From: José Fonseca Date: Sun, 25 Sep 2011 10:46:49 +0000 (+0100) Subject: softpipe: Use memory allocation macros. X-Git-Tag: 062012170305~4245 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f32c9c210875b2ce4878f97b84bdd4739bd489f9;p=profile%2Fivi%2Fmesa.git softpipe: Use memory allocation macros. Fixes segfault with memory debugging on. --- diff --git a/src/gallium/drivers/softpipe/sp_state_shader.c b/src/gallium/drivers/softpipe/sp_state_shader.c index da89527..d7d0599 100644 --- a/src/gallium/drivers/softpipe/sp_state_shader.c +++ b/src/gallium/drivers/softpipe/sp_state_shader.c @@ -93,8 +93,8 @@ create_fs_variant(struct softpipe_context *softpipe, } if (stipple_fs) { - free((void *) stipple_fs->tokens); - free(stipple_fs); + FREE((void *) stipple_fs->tokens); + FREE(stipple_fs); } return var; diff --git a/src/gallium/drivers/softpipe/sp_tex_sample.c b/src/gallium/drivers/softpipe/sp_tex_sample.c index dd33a10..2e91a70 100644 --- a/src/gallium/drivers/softpipe/sp_tex_sample.c +++ b/src/gallium/drivers/softpipe/sp_tex_sample.c @@ -1722,7 +1722,7 @@ create_filter_table(void) { unsigned i; if (!weightLut) { - weightLut = (float *) malloc(WEIGHT_LUT_SIZE * sizeof(float)); + weightLut = (float *) MALLOC(WEIGHT_LUT_SIZE * sizeof(float)); for (i = 0; i < WEIGHT_LUT_SIZE; ++i) { float alpha = 2;