Added patch to fix access violation when calling GetStringTypeW with NULL src.

This commit is contained in:
Sebastian Lackner
2014-12-27 23:08:41 +01:00
parent 1944c4b4e8
commit bbd04d95a2
5 changed files with 77 additions and 1 deletions

View File

@@ -53,6 +53,7 @@ PATCHLIST := \
iphlpapi-TCP_Table.ok \
kernel32-GetFinalPathNameByHandle.ok \
kernel32-GetNumaProcessorNode.ok \
kernel32-GetStringTypeW.ok \
kernel32-GetSystemTimes.ok \
kernel32-GetVolumePathName.ok \
kernel32-Named_Pipe.ok \
@@ -735,6 +736,21 @@ kernel32-GetNumaProcessorNode.ok:
echo '+ { "Michael Müller", "kernel32/tests: Add tests for GetNumaProcessorNode.", 1 },'; \
) > kernel32-GetNumaProcessorNode.ok
# Patchset kernel32-GetStringTypeW
# |
# | This patchset fixes the following Wine bugs:
# | * [#37759] Fix access violation when calling GetStringTypeW with NULL src.
# |
# | Modified files:
# | * dlls/kernel32/locale.c, dlls/kernel32/tests/locale.c
# |
.INTERMEDIATE: kernel32-GetStringTypeW.ok
kernel32-GetStringTypeW.ok:
$(call APPLY_FILE,kernel32-GetStringTypeW/0001-kernel32-Allow-empty-source-in-GetStringTypeW.patch)
@( \
echo '+ { "Christian Faure", "kernel32: Allow empty source in GetStringTypeW.", 1 },'; \
) > kernel32-GetStringTypeW.ok
# Patchset kernel32-GetSystemTimes
# |
# | This patchset fixes the following Wine bugs: