stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=9283575490231d670da9021c82fd217f5e07a117

commit 9283575490231d670da9021c82fd217f5e07a117
Author: Stefan Schmidt <[email protected]>
Date:   Fri Aug 8 14:54:56 2014 +0200

    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 a5209c3..44c86ab 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;

-- 


Reply via email to