From 9283575490231d670da9021c82fd217f5e07a117 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Fri, 8 Aug 2014 14:54:56 +0200 Subject: [PATCH] evas/gl_common: Use the right list when removing aptt Another classical copy and paste error. All references but one replaced. CID: 1223502 --- src/modules/evas/engines/gl_common/evas_gl_texture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/evas/engines/gl_common/evas_gl_texture.c b/src/modules/evas/engines/gl_common/evas_gl_texture.c index a5209c3a90..44c86abcb5 100644 --- a/src/modules/evas/engines/gl_common/evas_gl_texture.c +++ b/src/modules/evas/engines/gl_common/evas_gl_texture.c @@ -1401,7 +1401,7 @@ evas_gl_common_texture_free(Evas_GL_Texture *tex, Eina_Bool force EINA_UNUSED) } if (tex->ptt) { - tex->ptt->allocations = eina_list_remove(tex->pt->allocations, tex->aptt); + tex->ptt->allocations = eina_list_remove(tex->ptt->allocations, tex->aptt); if (tex->aptt) eina_rectangle_pool_release(tex->aptt); tex->aptt = NULL;