Commit 95af810d authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

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

parent fc76ad4d
......@@ -883,7 +883,7 @@ void __thiscall MSVCP_basic_string_char_reserve(basic_string_char *this, MSVCP_s
if(len > size)
return;
basic_string_char_grow(this, size, FALSE);
if(basic_string_char_grow(this, size, TRUE))
basic_string_char_eos(this, len);
}
......@@ -2618,7 +2618,7 @@ void __thiscall MSVCP_basic_string_wchar_reserve(basic_string_wchar *this, MSVCP
if(len > size)
return;
basic_string_wchar_grow(this, size, FALSE);
if(basic_string_wchar_grow(this, size, TRUE))
basic_string_wchar_eos(this, len);
}
......
......@@ -915,7 +915,7 @@ void __thiscall MSVCP_basic_string_char_reserve(basic_string_char *this, MSVCP_s
if(len > size)
return;
basic_string_char_grow(this, size, FALSE);
if(basic_string_char_grow(this, size, TRUE))
basic_string_char_eos(this, len);
}
......@@ -2770,7 +2770,7 @@ void __thiscall MSVCP_basic_string_wchar_reserve(basic_string_wchar *this, MSVCP
if(len > size)
return;
basic_string_wchar_grow(this, size, FALSE);
if(basic_string_wchar_grow(this, size, TRUE))
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