bu5hm4n pushed a commit to branch master.

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

commit a4d76984921ead32439b19ece0edcf1e6037937c
Author: Marcel Hollerbach <[email protected]>
Date:   Mon Mar 23 21:53:54 2020 +0100

    evas_textblock_tests: do not free a text cursor here
    
    the cur_obj would have been always dead at this point, as the textblock
    was freed. This now moved the textcursor object to a previous point.
    However, we could also remove the explicit cursor deletion...
    
    Reviewed-by: Mike Blumenkrantz <[email protected]>
    Differential Revision: https://phab.enlightenment.org/D11596
---
 src/tests/evas/evas_test_textblock.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tests/evas/evas_test_textblock.c 
b/src/tests/evas/evas_test_textblock.c
index 4de3477fb2..79d69a6104 100644
--- a/src/tests/evas/evas_test_textblock.c
+++ b/src/tests/evas/evas_test_textblock.c
@@ -62,8 +62,8 @@ while (0)
 do \
 { \
    evas_textblock_cursor_free(cur); \
-   evas_object_del(tb); \
    efl_del(cur_obj); \
+   evas_object_del(tb); \
    evas_textblock_style_free(st); \
    evas_free(evas); \
 } \

-- 


Reply via email to