소스 검색

vlc-video: Use case insensitive compare for valid extension check

It's possible for files to have some/all characters uppercase.

Fixes #3562
Matt Gajownik 5 년 전
부모
커밋
737481c09e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      plugins/vlc-video/vlc-video-source.c

+ 1 - 1
plugins/vlc-video/vlc-video-source.c

@@ -554,7 +554,7 @@ static bool valid_extension(const char *ext)
 		else
 			dstr_copy(&test, b);
 
-		if (dstr_cmp(&test, ext) == 0) {
+		if (dstr_cmpi(&test, ext) == 0) {
 			valid = true;
 			break;
 		}