From 9b11cb6e3fd432093b82b0fba6f9448adde50624 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 10 Sep 2002 11:45:10 +0000 Subject: [PATCH] fixed stream code breakage caused by the previous check in git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17105 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/stream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/stream.cpp b/src/common/stream.cpp index a1d8cb04cc..26d3ab77cd 100644 --- a/src/common/stream.cpp +++ b/src/common/stream.cpp @@ -811,7 +811,7 @@ wxInputStream& wxInputStream::Read(void *buf, size_t size) break; } - read = OnSysRead(buf, size); + read = OnSysRead(p, size); if ( !read ) { // no more data available -- 2.50.0