[vlc-devel] [PATCH] Revert "android: util: remove redundant strncmp"
Romain Vimont
rom1v at videolabs.io
Wed Feb 26 15:54:20 CET 2020
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".
---
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);
}
--
2.25.1
More information about the vlc-devel
mailing list