msvcp90: Fixed strstreambuf_ctor_get implementation.

This commit is contained in:
Piotr Caban 2012-10-17 09:57:39 +02:00 committed by Alexandre Julliard
parent 50cfac7ef4
commit ea828e557f
1 changed files with 1 additions and 1 deletions

View File

@ -12561,7 +12561,7 @@ strstreambuf* __thiscall strstreambuf_ctor_get(strstreambuf *this, const char *g
{
TRACE("(%p %p %ld)\n", this, g, len);
strstreambuf_ctor_get_put(this, NULL, 0, NULL);
strstreambuf_ctor_get_put(this, (char*)g, len, NULL);
this->strmode |= STRSTATE_Constant;
return this;
}