Remove windowscodecs/PropertyBag patch (accepted upstream).

This commit is contained in:
Sebastian Lackner 2014-08-07 23:58:57 +02:00
parent c50689ab09
commit ea59363fcb
5 changed files with 4 additions and 53 deletions

View File

@ -21,7 +21,6 @@ Wine-Compholio contains fixes for the following Wine bugs:
* Add support for extra large and jumbo icon lists in shell32 ([Wine Bug #24721](http://bugs.winehq.org/show_bug.cgi?id=24721 "Explorer++ crashes when choosing to view large icons or extra large icons"))
* Allow special characters in pipe names ([Wine Bug #28995](http://bugs.winehq.org/show_bug.cgi?id=28995 "Unable to use named pipes with \">\" character in the name"))
* Fix for ConnectNamedPort return value in overlapped mode ([Wine Bug #16550](http://bugs.winehq.org/show_bug.cgi?id=16550 "ConnectNamedPort should never return OK in overlapped mode (affects chromium ui_tests.exe)"))
* Fix number of returned properties in PropertyBag_GetPropertyInfo ([Wine Bug #37005](http://bugs.winehq.org/show_bug.cgi?id=37005 "Serif WebPlus Starter Edition crashes on startup (IPropertyBag2::GetPropertyInfo returns more properties than the caller requested, leading to stack smashing)"))
* GetSecurityInfo returns NULL DACL for process object ([Wine Bug #15980](http://bugs.winehq.org/show_bug.cgi?id=15980 "Rhapsody 2 crashes on startup (GetSecurityInfo returns NULL DACL for process object)"))
* Implement LoadIconMetric function ([Wine Bug #35375](http://bugs.winehq.org/show_bug.cgi?id=35375 "Multiple applications need Vista+ API COMCTL32.dll.380 a.k.a. 'LoadIconMetric' (Solidworks 2013 systray monitor, Microsoft One/SkyDrive)"))
* Implement a Microsoft Yahei replacement font ([Wine Bug #13829](http://bugs.winehq.org/show_bug.cgi?id=13829 "Wine does not have CJK fonts"))

6
debian/changelog vendored
View File

@ -16,9 +16,11 @@ wine-compholio (1.7.24) UNRELEASED; urgency=low
* Added patch to allow setting tablet / media center status via registry.
* Added patch to use manual redirection for RunDLL_CallEntry16.
* Added patch to set ldr.EntryPoint for main executable.
* Removed patch to create directories (accepted upstream).
* Added patch to fix invalid memory access in windowscodecs/PropertyBag.
* Removed patch to create Vista directories (accepted upstream).
* Removed strmbase/quartz locking fix patches (accepted upstream).
-- Erich E. Hoover <erich.e.hoover@gmail.com> Tue, 05 Aug 2014 17:28:04 -0600
* Removed windowscodecs/PropertyBag patch (accepted upstream).
-- Erich E. Hoover <erich.e.hoover@gmail.com> Thu, 07 Aug 2014 23:57:43 +0200
wine-compholio (1.7.23) unstable; urgency=low
* Rewrite of patch system to simplify maintaining large patchsets.

View File

@ -36,7 +36,6 @@ PATCHLIST := Miscellaneous.ok \
shlwapi-UrlCombine.ok \
user32-GetSystemMetrics.ok \
user32-GetTipText.ok \
windowscodecs-PropertyBag.ok \
wineboot-HKEY_DYN_DATA.ok \
winepulse-PulseAudio_Support.ok \
winex11-XEMBED.ok \
@ -653,25 +652,6 @@ user32-GetTipText.ok:
echo '+ { "user32-GetTipText", "Erich E. Hoover", "Handle TOOLTIPS_GetTipText edge cases." },'; \
) > user32-GetTipText.ok
# Patchset windowscodecs-PropertyBag
# |
# | Included patches:
# | * Fix number of returned properties in PropertyBag_GetPropertyInfo. [by Michael Müller]
# |
# | This patchset fixes the following Wine bugs:
# | * [#37005] Serif WebPlus Starter Edition crashes on startup (IPropertyBag2::GetPropertyInfo returns more properties than
# | the caller requested, leading to stack smashing)
# |
# | Modified files:
# | * dlls/windowscodecs/propertybag.c
# |
.INTERMEDIATE: windowscodecs-PropertyBag.ok
windowscodecs-PropertyBag.ok:
$(PATCH) < windowscodecs-PropertyBag/0001-windowscodecs-Fix-number-of-returned-properties-in-P.patch
@( \
echo '+ { "windowscodecs-PropertyBag", "Michael Müller", "Fix number of returned properties in PropertyBag_GetPropertyInfo." },'; \
) > windowscodecs-PropertyBag.ok
# Patchset wineboot-HKEY_DYN_DATA
# |
# | Included patches:

View File

@ -1,26 +0,0 @@
From 782be7241e1a135c1645a09b30d95d020c7af8e5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michael=20M=C3=BCller?= <michael@fds-team.de>
Date: Thu, 7 Aug 2014 02:41:09 +0200
Subject: windowscodecs: Fix number of returned properties in
PropertyBag_GetPropertyInfo.
---
dlls/windowscodecs/propertybag.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/windowscodecs/propertybag.c b/dlls/windowscodecs/propertybag.c
index 02914ec..11fa5b1 100644
--- a/dlls/windowscodecs/propertybag.c
+++ b/dlls/windowscodecs/propertybag.c
@@ -248,7 +248,7 @@ static HRESULT WINAPI PropertyBag_GetPropertyInfo(IPropertyBag2 *iface, ULONG iP
if (iProperty+cProperties > This->prop_count )
return WINCODEC_ERR_VALUEOUTOFRANGE;
- *pcProperties = max(cProperties, This->prop_count-iProperty);
+ *pcProperties = min(cProperties, This->prop_count-iProperty);
for (i=0; i < *pcProperties; i++)
{
--
1.8.3.2

View File

@ -1,4 +0,0 @@
Author: Michael Müller
Subject: Fix number of returned properties in PropertyBag_GetPropertyInfo.
Revision: 1
Fixes: [37005] Fix number of returned properties in PropertyBag_GetPropertyInfo