summaryrefslogtreecommitdiffstats
path: root/libvo/vo_gl2.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/vo_gl2.c')
-rw-r--r--libvo/vo_gl2.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/libvo/vo_gl2.c b/libvo/vo_gl2.c
index f956fcf7d7..14137f76a6 100644
--- a/libvo/vo_gl2.c
+++ b/libvo/vo_gl2.c
@@ -236,8 +236,7 @@ static int initTextures(void)
texpercx = (GLfloat) texture_width / (GLfloat) image_width;
texpercy = (GLfloat) texture_height / (GLfloat) image_height;
- if (texgrid)
- free(texgrid);
+ free(texgrid);
texgrid = calloc (texnumx * texnumy, sizeof (struct TexSquare));
raw_line_len = image_width * image_bytes;
@@ -826,10 +825,8 @@ static void
uninit(void)
{
if ( !vo_config_count ) return;
- if (texgrid) {
- free(texgrid);
- texgrid = NULL;
- }
+ free(texgrid);
+ texgrid = NULL;
uninit_mpglcontext(&glctx);
}