21 Oct
2024
21 Oct
'24
9:54 p.m.
From: Semenov Herman (Семенов Герман)<GermanAizek(a)yandex.ru> --- programs/msidb/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/msidb/main.c b/programs/msidb/main.c index 8570b1f9f3d..3851c160736 100644 --- a/programs/msidb/main.c +++ b/programs/msidb/main.c @@ -449,7 +449,7 @@ static int import_tables( struct msidb_state *state ) WCHAR *ext; /* permit specifying tables with wildcards ('Feature*') */ - if (wcsstr( table_name, L"*" ) != NULL) + if (wcschr( table_name, '*' ) != NULL) { WIN32_FIND_DATAW f; HANDLE handle; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6158