From 9872bf08c8d4458b634adfda3eff3f2bf681dc01 Mon Sep 17 00:00:00 2001 From: sln Date: Fri, 30 Mar 2007 10:56:47 +0000 Subject: [PATCH] Size of buffer during writing fixed --- src/LightApp/LightApp_Driver.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LightApp/LightApp_Driver.cxx b/src/LightApp/LightApp_Driver.cxx index 6f1853a18..254202c97 100644 --- a/src/LightApp/LightApp_Driver.cxx +++ b/src/LightApp/LightApp_Driver.cxx @@ -552,7 +552,7 @@ bool LightApp_Driver::PutFilesToFirstStream( const std::string& theModuleName, u } if ( aCurrSize < GetMaxBuffSize() ) - theBufferSize = myCurrPos - 1; + theBufferSize = myCurrPos; else theBufferSize = GetMaxBuffSize(); -- 2.39.2