[vlc-commits] Revert "android: util: remove redundant strncmp"

Romain Vimont git at videolan.org
Tue Mar 17 11:06:02 CET 2020


vlc | branch: master | Romain Vimont <rom1v at videolabs.io> | Wed Feb 26 15:46:32 2020 +0100| [c2a9006a03ffd056716af4fc1c7b0eadd77a38f5] | committer: Steve Lhomme

Revert "android: util: remove redundant strncmp"

This reverts commit 77aa424b72d8b6a1e7049c430c90303b9473ed7d.

The replacement was not equivalent:

    strncmp(a, b, strlen(b)) == 0  # test if a starts with b
    strcmp(a, b) == 0              # test if a equals b

In practice, it breaks OpenGL on Android when the vout_modules contains
"gles2,none".

Signed-off-by: Steve Lhomme <robux4 at ycbcr.xyz>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c2a9006a03ffd056716af4fc1c7b0eadd77a38f5
---

 modules/video_output/android/utils.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/video_output/android/utils.c b/modules/video_output/android/utils.c
index 25ac24676f..2010f13976 100644
--- a/modules/video_output/android/utils.c
+++ b/modules/video_output/android/utils.c
@@ -546,8 +546,8 @@ AWindowHandler_new(vout_window_t *wnd, awh_events_t *p_events)
          */
         char *vout_modules = var_InheritString(wnd, "vout");
         if (vout_modules
-         && (strcmp(vout_modules, "gles2") == 0
-          || strcmp(vout_modules, "opengles2") == 0))
+         && (strncmp(vout_modules, "gles2", sizeof("gles2") - 1) == 0
+          || strncmp(vout_modules, "opengles2", sizeof("opengles2") - 1) == 0))
             p_awh->b_has_video_layout_listener = false;
         free(vout_modules);
     }



More information about the vlc-commits mailing list