From 4317cd96d3022ad0ef7e1d5ffa82f5c2693bb44e Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Mon, 6 Mar 2017 21:33:28 +0100 Subject: [PATCH] getteximage: fix _mesa_GetTextureSubImage() MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Oops. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=100088 Fixes: 5ae54c0cf7 ("getteximage: avoid to lookup textures with id 0") Signed-off-by: Samuel Pitoiset Reviewed-by: Marek Olšák --- src/mesa/main/texgetimage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/texgetimage.c b/src/mesa/main/texgetimage.c index 37fda3dc9c4..658b0e58e6d 100644 --- a/src/mesa/main/texgetimage.c +++ b/src/mesa/main/texgetimage.c @@ -1461,7 +1461,7 @@ _mesa_GetTextureSubImage(GLuint texture, GLint level, struct gl_texture_object *texObj = NULL; if (texture > 0) - _mesa_lookup_texture(ctx, texture); + texObj = _mesa_lookup_texture(ctx, texture); if (!texObj) { _mesa_error(ctx, GL_INVALID_VALUE, "%s(texture)", caller); -- 2.30.2