From: Semenov Herman (Семенов Герман)GermanAizek@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;