diff options
author | Ryuan Choi <ryuan.choi@gmail.com> | 2013-06-27 15:21:37 +0900 |
---|---|---|
committer | Ryuan Choi <ryuan.choi@gmail.com> | 2013-06-27 15:38:46 +0900 |
commit | a305c12731c3482a9e75ef72c6a6e58cfba563ec (patch) | |
tree | cdc15562c71467637b8a126c4bf943ef4b29494b /NEWS | |
parent | 718712ffec7cd08e6e5637fcdc838e4a3a03a928 (diff) | |
download | elementary-a305c12731c3482a9e75ef72c6a6e58cfba563ec.tar.gz |
fileselector : Fix Segfault in elementary file_selector_example when closed
https://phab.enlightenment.org/T133
list_itc and grid_itc are static variables, but they were managed by file_selector instance.
For example, they are allocated two times and first allocated classes are dangling
when two file selector are created.
This patch moves their init/deinit logic to constructor/destructor of file selector class.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -252,6 +252,7 @@ Fixes: * Fix elm_scroller_page_show bug. It have to save the wanted values to show the wanted page. * Block mouse events when the ctxpopup on dismiss. * Fix crash of elm_notify when timeout is zero. + * Fix Segfault in elementary file_selector_example when closed Removals: |