X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmRLEFrame.cxx;h=7bfde04bfacc782aec248c8530db196551ff68eb;hb=c64b728232bfd4b8455a578f9efb50bd61f88c87;hp=99a7f7187fb5c568a918d59eaa394a2a6d885725;hpb=344736f50f507aa60d8fc6f6645fe5259a26b264;p=gdcm.git diff --git a/src/gdcmRLEFrame.cxx b/src/gdcmRLEFrame.cxx index 99a7f718..7bfde04b 100644 --- a/src/gdcmRLEFrame.cxx +++ b/src/gdcmRLEFrame.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmRLEFrame.cxx,v $ Language: C++ - Date: $Date: 2005/02/01 13:00:16 $ - Version: $Revision: 1.6 $ + Date: $Date: 2005/06/17 12:27:52 $ + Version: $Revision: 1.8 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -85,7 +85,6 @@ bool RLEFrame::ReadAndDecompressRLEFragment( uint8_t *subRaw, long numberOfOutputBytes = 0; long numberOfReadBytes = 0; - while( numberOfOutputBytes < rawSegmentSize ) { fp->read( (char*)&count, 1 ); @@ -120,7 +119,7 @@ bool RLEFrame::ReadAndDecompressRLEFragment( uint8_t *subRaw, if ( numberOfReadBytes > fragmentSize ) { - gdcmVerboseMacro( "Read more bytes than the segment size."); + gdcmWarningMacro( "Read more bytes than the segment size."); return false; } }