From 76a423efe09dcaeb86badd3ec449da2ea56c5a9c Mon Sep 17 00:00:00 2001 From: Thomas Hindoe Paaboel Andersen Date: Wed, 4 May 2016 06:15:37 +0200 Subject: [PATCH] mesa: remove null check before free Reviewed-by: Eduardo Lima Mitev --- src/mesa/main/readpix.c | 3 +-- src/mesa/main/texgetimage.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/mesa/main/readpix.c b/src/mesa/main/readpix.c index 882d863c1c7..1cb06c78a5a 100644 --- a/src/mesa/main/readpix.c +++ b/src/mesa/main/readpix.c @@ -608,8 +608,7 @@ read_rgba_pixels( struct gl_context *ctx, dst, format, type); } - if (rgba) - free(rgba); + free(rgba); done_swap: /* Handle byte swapping if required */ diff --git a/src/mesa/main/texgetimage.c b/src/mesa/main/texgetimage.c index 4ac0ad4b7f5..fc3cc6b6e17 100644 --- a/src/mesa/main/texgetimage.c +++ b/src/mesa/main/texgetimage.c @@ -557,8 +557,7 @@ get_tex_rgba_uncompressed(struct gl_context *ctx, GLuint dimensions, } done: - if (rgba) - free(rgba); + free(rgba); } -- 2.30.2