wl_egl : Prevent access to NULL pointer

Summary: The pointer s can be null.

Test Plan: N/A

Reviewers: Jaehyun_Cho, raster

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D10654
This commit is contained in:
junsu choi 2019-11-13 13:40:44 +09:00 committed by Mike Blumenkrantz
parent cb5a3bbbc9
commit 35aef560fb
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ eng_window_new(Evas_Engine_Info_Wayland *einfo, int w, int h, Render_Output_Swap
wl_disp = ecore_wl2_display_get(gw->wl2_disp);
const char *s = eglQueryString(EGL_NO_DISPLAY, EGL_EXTENSIONS);
if (strstr(s, "EXT_platform_base"))
if (s && strstr(s, "EXT_platform_base"))
{
EGLDisplay (*func) (EGLenum platform, void *native_display, const EGLint *attrib_list);
func = (void *)eglGetProcAddress("eglGetPlatformDisplayEXT");