Alex Henrie : oleaut32: Add DECLSPEC_HOTPATCH to SysAllocStringByteLen.

Alexandre Julliard julliard at winehq.org
Thu Nov 29 15:09:39 CST 2018


Module: wine
Branch: stable
Commit: 2fd00842939e36df8e58c528e913071a22358f07
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=2fd00842939e36df8e58c528e913071a22358f07

Author: Alex Henrie <alexhenrie24 at gmail.com>
Date:   Tue Oct  2 21:30:45 2018 -0600

oleaut32: Add DECLSPEC_HOTPATCH to SysAllocStringByteLen.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45199
Signed-off-by: Alex Henrie <alexhenrie24 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>
(cherry picked from commit 72c2af3868bd68419a0f43c3ce2d8b606cb228ca)
Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>

---

 dlls/oleaut32/oleaut.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/oleaut32/oleaut.c b/dlls/oleaut32/oleaut.c
index 608446d..f9a4aca 100644
--- a/dlls/oleaut32/oleaut.c
+++ b/dlls/oleaut32/oleaut.c
@@ -429,7 +429,7 @@ int WINAPI SysReAllocStringLen(BSTR* old, const OLECHAR* str, unsigned int len)
  *  without checking for a terminating NUL.
  *  See BSTR.
  */
-BSTR WINAPI SysAllocStringByteLen(LPCSTR str, UINT len)
+BSTR WINAPI DECLSPEC_HOTPATCH SysAllocStringByteLen(LPCSTR str, UINT len)
 {
     bstr_t *bstr;
 




More information about the wine-cvs mailing list