Add references to bug reports for several patches.

This commit is contained in:
Zebediah Figura 2018-02-21 22:45:42 -06:00
parent 97461b276c
commit 5bf41624ab
7 changed files with 20 additions and 5 deletions

View File

@ -1,4 +1,4 @@
Fixes: [40418] Implement BCrypt AES provider
Fixes: [42553] Implement BCrypt ECB chaining mode
Fixes: [39582] Implement BCrypt RSA provider
Fixes: Implement BCryptImportKey and BCryptExportKey
Fixes: [44053] Implement BCryptImportKey and BCryptExportKey

View File

@ -1,3 +1,3 @@
Fixes: Implement semi-stub for RoGetActivationFactory
Fixes: [44399] Implement semi-stub for RoGetActivationFactory
Fixes: Implement semi-stub for RoActivateInstance
Fixes: Implement stubs for further combase Ro* functions

View File

@ -1 +1 @@
Fixes: Fallback to default comspec when %COMSPEC% is not set
Fixes: [19801] Fallback to default comspec when %COMSPEC% is not set

View File

@ -1 +1,2 @@
Fixes: Return MSIDBSTATE_ERROR when MsiGetDatabaseState is called from a custom action
Fixes: Return MSIDBSTATE_ERROR when MsiGetDatabaseState is called from a custom action
# Note: this was originally written for League of Legends; see bug 43093.

View File

@ -1 +1,2 @@
Fixes: [19016] Implement marshalling for TKIND_COCLASS
Fixes: [39799] Implement ITypeInfo_fnInvoke for TKIND_COCLASS

View File

@ -2968,6 +2968,9 @@ fi
# Patchset kernel32-COMSPEC
# |
# | This patchset fixes the following Wine bugs:
# | * [#19801] Fallback to default comspec when %COMSPEC% is not set
# |
# | Modified files:
# | * dlls/kernel32/process.c, programs/cmd/wcmdmain.c
# |
@ -3067,6 +3070,9 @@ fi
# Patchset combase-RoApi
# |
# | This patchset fixes the following Wine bugs:
# | * [#44399] Implement semi-stub for RoGetActivationFactory
# |
# | Modified files:
# | * dlls/api-ms-win-core-winrt-l1-1-0/api-ms-win-core-winrt-l1-1-0.spec, dlls/api-ms-win-core-winrt-registration-l1-1-0/api-
# | ms-win-core-winrt-registration-l1-1-0.spec, dlls/combase/combase.spec, dlls/combase/roapi.c, include/roapi.h
@ -3200,6 +3206,7 @@ fi
# | * [#40418] Implement BCrypt AES provider
# | * [#42553] Implement BCrypt ECB chaining mode
# | * [#39582] Implement BCrypt RSA provider
# | * [#44053] Implement BCryptImportKey and BCryptExportKey
# |
# | Modified files:
# | * dlls/bcrypt/bcrypt.spec, dlls/bcrypt/bcrypt_main.c, dlls/bcrypt/tests/bcrypt.c, dlls/ncrypt/ncrypt.spec,
@ -6799,6 +6806,7 @@ fi
# |
# | This patchset fixes the following Wine bugs:
# | * [#19016] Implement marshalling for TKIND_COCLASS
# | * [#39799] Implement ITypeInfo_fnInvoke for TKIND_COCLASS
# |
# | Modified files:
# | * dlls/oleaut32/tests/tmarshal.c, dlls/oleaut32/tmarshal.c, dlls/oleaut32/typelib.c
@ -7723,6 +7731,9 @@ fi
# Patchset shell32-UnixFS
# |
# | This patchset fixes the following Wine bugs:
# | * [#43109] Do not use unixfs for devices without mountpoint
# |
# | Modified files:
# | * dlls/shell32/shfldr_desktop.c, dlls/shell32/tests/shlfolder.c
# |
@ -8624,7 +8635,6 @@ if test "$enable_windowscodecs_TIFF_Support" -eq 1; then
printf '%s\n' '+ { "Dmitry Timoshkov", "windowscodecs: Add support for 32bppCMYK and 64bppCMYK formats to TIFF decoder.", 1 },';
printf '%s\n' '+ { "Dmitry Timoshkov", "windowscodecs: Add support for 4bpp RGBA format to TIFF decoder.", 1 },';
printf '%s\n' '+ { "Dmitry Timoshkov", "windowscodecs: Add support for 16bpp RGBA format to TIFF decoder.", 1 },';
printf '%s\n' '+ { "Dmitry Timoshkov", "windowscodecs: Add some tests for various TIFF color formats.", 1 },';
printf '%s\n' '+ { "Dmitry Timoshkov", "windowscodecs: Tolerate partial reads in the IFD metadata loader.", 1 },';
printf '%s\n' '+ { "Dmitry Timoshkov", "gdiplus: Add support for more image color formats.", 1 },';
printf '%s\n' '+ { "Dmitry Timoshkov", "gdiplus/tests: Add some tests for loading TIFF images in various color formats.", 1 },';

View File

@ -1 +1,4 @@
Fixes: Do not use unixfs for devices without mountpoint
Fixes: [43109] Do not use unixfs for devices without mountpoint
# Note: this patch was added by slackner in 2015 May, two years before this bug
# was filed. What was its original purpose?