Commit 8ed96ab0 authored by Daniel Lehman's avatar Daniel Lehman Committed by Alexandre Julliard

msvcp90: In codecvt<wchar_t>::do_out, copy local buffer to *to_next.

parent c65bd5ca
......@@ -3273,6 +3273,7 @@ int __thiscall codecvt_wchar_do_out(const codecvt_wchar *this, int *state,
}
(*from_next)++;
memcpy_s(*to_next, to_end-*to_next, buf, size);
(*to_next) += size;
}
}
......
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