jpeg pushed a commit to branch master.

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

commit d4b9328dcdc808d38d50498af05e13ea0a39cb46
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Tue Jun 28 19:17:24 2016 +0900

    evas: Fix double stringshare_del
    
    A stringshare for font "style" was not properly duplicated,
    resulting in lots of invalid stringshare pointers.
    
    Ping @id213sin (commit 2ce33e73a7d48d4b54a075c07f12c0162).
---
 src/lib/evas/canvas/evas_font_dir.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/lib/evas/canvas/evas_font_dir.c 
b/src/lib/evas/canvas/evas_font_dir.c
index 1369dfe..b5c1d31 100644
--- a/src/lib/evas/canvas/evas_font_dir.c
+++ b/src/lib/evas/canvas/evas_font_dir.c
@@ -456,6 +456,7 @@ evas_font_desc_dup(const Evas_Font_Description *fdesc)
    new->name = eina_stringshare_ref(new->name);
    new->fallbacks = eina_stringshare_ref(new->fallbacks);
    new->lang = eina_stringshare_ref(new->lang);
+   new->style = eina_stringshare_ref(new->style);
 
    return new;
 }

-- 


Reply via email to