summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorRyuan Choi <ryuan.choi@gmail.com>2013-06-27 15:21:37 +0900
committerRyuan Choi <ryuan.choi@gmail.com>2013-06-27 15:38:46 +0900
commita305c12731c3482a9e75ef72c6a6e58cfba563ec (patch)
treecdc15562c71467637b8a126c4bf943ef4b29494b /ChangeLog
parent718712ffec7cd08e6e5637fcdc838e4a3a03a928 (diff)
downloadelementary-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 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 29358d8ba..50e483942 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1463,3 +1463,8 @@
* Gesture Layer: add APIs to add/del multiple callbacks for a same
gesture/type/state.
+
+2013-06-25 Ryuan Choi (ryuan)
+
+ * Fix Segfault in elementary file_selector_example when closed.
+ https://phab.enlightenment.org/T133