From 35aef560fbd8a62578a5e8de4e4c26ddfa70748d Mon Sep 17 00:00:00 2001 From: JunsuChoi Date: Wed, 13 Nov 2019 13:40:44 +0900 Subject: [PATCH] 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 --- src/modules/evas/engines/wayland_egl/evas_wl_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/evas/engines/wayland_egl/evas_wl_main.c b/src/modules/evas/engines/wayland_egl/evas_wl_main.c index 95e59ce9e2..cad83434fc 100644 --- a/src/modules/evas/engines/wayland_egl/evas_wl_main.c +++ b/src/modules/evas/engines/wayland_egl/evas_wl_main.c @@ -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");