jsuya pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=f4fa719eaecb09b479b2807dcf661820d3b7fe3d

commit f4fa719eaecb09b479b2807dcf661820d3b7fe3d
Author: JunsuChoi <[email protected]>
Date:   Wed Nov 13 13:40:44 2019 +0900

    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");

-- 


Reply via email to