projects
/
platform
/
core
/
system
/
system-popup.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
26bba91
)
Crash: popup crash in app_pause state
51/79351/2
accepted/tizen/common/20160711.170849
accepted/tizen/mobile/20160711.090955
accepted/tizen/tv/20160711.091007
accepted/tizen/wearable/20160711.091026
submit/tizen/20160711.082521
author
changjoo.lee
<changjoo.lee@samsung.com>
Sun, 10 Jul 2016 08:30:23 +0000
(17:30 +0900)
committer
changjoo.lee
<changjoo.lee@samsung.com>
Mon, 11 Jul 2016 05:12:40 +0000
(14:12 +0900)
Popup crash is casued by tapping home button, when system popup is activated.
It is fixed by initializing popup_list.
Change-Id: I5961d8fb87ab5fc9c4863c14d3a4ba09ff666451
Signed-off-by: changjoo.lee <changjoo.lee@samsung.com>
src/common/core.c
patch
|
blob
|
history
diff --git
a/src/common/core.c
b/src/common/core.c
index 47b3fb1938bc1324ae867b1f7ff6bb472f77b865..704a10e5f66fad364af21fd98950c5e7ee2bf1c6 100644
(file)
--- a/
src/common/core.c
+++ b/
src/common/core.c
@@
-57,8
+57,10
@@
static void free_obj(gpointer data)
void unregister_all_popup(void)
{
- if (popup_list)
+ if (popup_list)
{
g_list_free_full(popup_list, free_obj);
+ popup_list = NULL;
+ }
}
void terminate_if_no_popup(void)