Add patch for GetMenuItemInfo.

This commit is contained in:
Michael Müller
2014-09-07 20:26:44 +02:00
parent aaf6e38a98
commit c83e83b911
4 changed files with 56 additions and 1 deletions

View File

@@ -63,6 +63,7 @@ PATCHLIST := \
shell32-RunDLL_CallEntry16.ok \
shell32-SHCreateSessionKey.ok \
shlwapi-UrlCombine.ok \
user32-GetMenuItemInfo.ok \
user32-GetSystemMetrics.ok \
user32-GetTipText.ok \
user32-WndProc.ok \
@@ -991,6 +992,24 @@ shlwapi-UrlCombine.ok:
echo '+ { "shlwapi-UrlCombine", "Sebastian Lackner", "Workaround for broken implementation of shlwapi url functions." },'; \
) > shlwapi-UrlCombine.ok
# Patchset user32-GetMenuItemInfo
# |
# | Included patches:
# | * Also set cch member in GetMenuItemInfo when passing a null pointer. [by Michael Müller]
# |
# | This patchset fixes the following Wine bugs:
# | * [#34642] Fix unitialized cch value when calling GetMenuItemInfo with a null pointer
# |
# | Modified files:
# | * dlls/user32/menu.c
# |
.INTERMEDIATE: user32-GetMenuItemInfo.ok
user32-GetMenuItemInfo.ok:
$(call APPLY_FILE,user32-GetMenuItemInfo/0001-user32-Also-set-cch-member-in-GetMenuItemInfo-when-p.patch)
@( \
echo '+ { "user32-GetMenuItemInfo", "Michael Müller", "Also set cch member in GetMenuItemInfo when passing a null pointer." },'; \
) > user32-GetMenuItemInfo.ok
# Patchset user32-GetSystemMetrics
# |
# | Included patches: