X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a324a7bccf4bda8f4f2bf09daee8104cae953cee..c60fc26d5522510e50de8b9b83cf586066781811:/src/common/mstream.cpp diff --git a/src/common/mstream.cpp b/src/common/mstream.cpp index 04501d5e5d..8e81abd394 100644 --- a/src/common/mstream.cpp +++ b/src/common/mstream.cpp @@ -104,8 +104,8 @@ size_t wxMemoryOutputStream::CopyTo(char *buffer, size_t len) const if (!buffer) return 0; - if (len > StreamSize()) - len = StreamSize(); + if (len > GetSize()) + len = GetSize(); memcpy(buffer, m_o_streambuf->GetBufferStart(), len); return len;