Commit 613ce7850e579b628361a2692e21e9aa33889b22

Sam Lantinga 2022-07-26T13:34:27

Fixed interpreting SDL_KMSDRM_DEVICE_INDEX="" as index 0

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/video/kmsdrm/SDL_kmsdrmvideo.c b/src/video/kmsdrm/SDL_kmsdrmvideo.c
index b66e715..92ecc2d 100644
--- a/src/video/kmsdrm/SDL_kmsdrmvideo.c
+++ b/src/video/kmsdrm/SDL_kmsdrmvideo.c
@@ -80,7 +80,7 @@ get_driindex(void)
     const char *hint;
 
     hint = SDL_GetHint(SDL_HINT_KMSDRM_DEVICE_INDEX);
-    if (hint) {
+    if (hint && *hint) {
         const int idx = SDL_atoi(hint);
         if (idx >= 0) {
             return idx;  /* we'll take the user's request here. */