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,8 +916,8 @@ void __thiscall MSVCP_basic_string_char_reserve(basic_string_char *this, MSVCP_s
if(len > size)
return;
basic_string_char_grow(this, size, FALSE);
basic_string_char_eos(this, len);
if(basic_string_char_grow(this, size, TRUE))
basic_string_char_eos(this, len);
}
/* ??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ */
......@@ -2767,8 +2767,8 @@ void __thiscall MSVCP_basic_string_wchar_reserve(basic_string_wchar *this, MSVCP
if(len > size)
return;
basic_string_wchar_grow(this, size, FALSE);
basic_string_wchar_eos(this, len);
if(basic_string_wchar_grow(this, size, TRUE))
basic_string_wchar_eos(this, len);
}
/* ??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAE@XZ */
......
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