Commit 69677bda authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcp80: Make it possible to shrink allocated memory in basic_string::reserve.

parent c9cef715
...@@ -916,7 +916,7 @@ void __thiscall MSVCP_basic_string_char_reserve(basic_string_char *this, MSVCP_s ...@@ -916,7 +916,7 @@ void __thiscall MSVCP_basic_string_char_reserve(basic_string_char *this, MSVCP_s
if(len > size) if(len > size)
return; return;
basic_string_char_grow(this, size, FALSE); if(basic_string_char_grow(this, size, TRUE))
basic_string_char_eos(this, len); basic_string_char_eos(this, len);
} }
...@@ -2767,7 +2767,7 @@ void __thiscall MSVCP_basic_string_wchar_reserve(basic_string_wchar *this, MSVCP ...@@ -2767,7 +2767,7 @@ void __thiscall MSVCP_basic_string_wchar_reserve(basic_string_wchar *this, MSVCP
if(len > size) if(len > size)
return; return;
basic_string_wchar_grow(this, size, FALSE); if(basic_string_wchar_grow(this, size, TRUE))
basic_string_wchar_eos(this, len); basic_string_wchar_eos(this, len);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment