From 8fdb55cf5c2b50df6cf580cadf7a6b3c623238c6 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 14 Aug 2012 13:29:20 +0200 Subject: [PATCH] msvcp90: Fix the calling convention of the basic_string helpers. --- dlls/msvcp90/string.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msvcp90/string.c b/dlls/msvcp90/string.c index 63ef4664df6..fb2ba1a368b 100644 --- a/dlls/msvcp90/string.c +++ b/dlls/msvcp90/string.c @@ -1992,7 +1992,7 @@ basic_string_char* __thiscall basic_string_char_replace_cstr_len(basic_string_ch } /* Not exported from msvcp90 */ -basic_string_char* basic_string_char_replace_helper(basic_string_char *this, +basic_string_char* __stdcall basic_string_char_replace_helper(basic_string_char *this, MSVCP_size_t off, MSVCP_size_t len, const char *str, MSVCP_size_t str_len) { return basic_string_char_replace_cstr_len(this, off, len, str, str_len); @@ -3951,7 +3951,7 @@ basic_string_wchar* __thiscall basic_string_wchar_replace_cstr_len(basic_string_ } /* Not exported from msvcp90 */ -basic_string_wchar* basic_string_wchar_replace_helper(basic_string_wchar *this, +basic_string_wchar* __stdcall basic_string_wchar_replace_helper(basic_string_wchar *this, MSVCP_size_t off, MSVCP_size_t len, const wchar_t *str, MSVCP_size_t str_len) { return basic_string_wchar_replace_cstr_len(this, off, len ,str, str_len); -- 2.11.4.GIT