mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2024-11-19 17:06:04 -07:00
winemenubuilder: Disallow desktop integration for internet shortcuts.
This commit is contained in:
parent
b520a19fc2
commit
0f88c7c31f
Notes:
Alexandre Julliard
2023-10-30 23:32:43 +01:00
Approved-by: Alexandre Julliard (@julliard) Merge-Request: https://gitlab.winehq.org/wine/wine/-/merge_requests/4222
1 changed files with 2 additions and 1 deletions
|
@ -1968,7 +1968,8 @@ static BOOL is_extension_banned(LPCWSTR extension)
|
|||
if (!wcsicmp(extension, L".bat") ||
|
||||
!wcsicmp(extension, L".com") ||
|
||||
!wcsicmp(extension, L".exe") ||
|
||||
!wcsicmp(extension, L".msi"))
|
||||
!wcsicmp(extension, L".msi") ||
|
||||
!wcsicmp(extension, L".url"))
|
||||
return TRUE;
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue