projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ed35b0d
)
e_info_server: Add missing null check
17/318117/2
author
Junkyeong Kim
<jk0430.kim@samsung.com>
Tue, 24 Sep 2024 11:39:53 +0000
(20:39 +0900)
committer
Doyoun Kang
<doyoun.kang@samsung.com>
Tue, 24 Sep 2024 23:47:57 +0000
(23:47 +0000)
Change-Id: I9ef80f44a88245153e6411fa86fb7ffd9e02f0f0
src/bin/debug/e_info_server.c
patch
|
blob
|
history
diff --git
a/src/bin/debug/e_info_server.c
b/src/bin/debug/e_info_server.c
index cc1c569f8dc7d049e0febb709519f0613abff5bc..60831425cf1433e4f2105dacf9c35d80932ffe1d 100644
(file)
--- a/
src/bin/debug/e_info_server.c
+++ b/
src/bin/debug/e_info_server.c
@@
-4464,6
+4464,11
@@
_e_info_server_cb_output_mode(const Eldbus_Service_Interface *iface EINA_UNUSED,
(mode == E_INFO_CMD_OUTPUT_MODE_SET))
{
E_Comp_Screen *e_comp_screen = e_comp_screen_get();
+ if (!e_comp_screen)
+ {
+ ERR("Error no screen.");
+ return reply;
+ }
tdpy = e_comp_screen->tdisplay;
if (tdpy != NULL)