From f19c82dd2a64a6317ee05527710638c4dffbcf0f Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sat, 12 Aug 2000 20:06:54 +0000 Subject: [PATCH] fixed bug in zlib compressed binary xml resources saving (crashed due to a typo) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8056 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- contrib/src/xml/xmlbinz.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/src/xml/xmlbinz.cpp b/contrib/src/xml/xmlbinz.cpp index a65d81bd99..db42f205ca 100644 --- a/contrib/src/xml/xmlbinz.cpp +++ b/contrib/src/xml/xmlbinz.cpp @@ -52,7 +52,7 @@ bool wxXmlIOHandlerBinZ::Load(wxInputStream& stream, wxXmlDocument& doc) { ReadHeader(stream); wxZlibInputStream costr(stream); - return wxXmlIOHandlerBin::Load(stream, doc); + return wxXmlIOHandlerBin::Load(costr, doc); } -- 2.50.0