From d0a9419c98ae2f1fa99c1162d31621d2bb937f43 Mon Sep 17 00:00:00 2001 From: Ruediger Hanke Date: Wed, 7 Aug 2002 13:26:20 +0000 Subject: input/output were swapped in codec 0 svn-id: r4713 --- bundle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bundle.cpp') diff --git a/bundle.cpp b/bundle.cpp index ea3456206c..580d902138 100644 --- a/bundle.cpp +++ b/bundle.cpp @@ -319,7 +319,7 @@ int32 Bundle::decompressCodec(int32 codec, byte * comp_input, byte * comp_output switch(codec) { case 0: - memcpy(comp_input, comp_output, output_size); + memcpy(comp_output, comp_input, output_size); break; case 1: -- cgit v1.2.3