fix a few Coverity warnings

This commit is contained in:
jean-pierre charras 2020-11-25 21:01:27 +01:00
parent 09587ef4fb
commit 20880268bf
2 changed files with 4 additions and 2 deletions

View File

@ -370,7 +370,7 @@ bool DL_Dxf::getStrippedLine( std::string& s, unsigned int size,
bool DL_Dxf::stripWhiteSpace( char** s, bool stripSpace ) bool DL_Dxf::stripWhiteSpace( char** s, bool stripSpace )
{ {
// last non-NULL char: // last non-NULL char:
std::size_t lastChar = strlen( *s ) - 1; int lastChar = strlen( *s ) - 1;
// Is last character CR or LF? // Is last character CR or LF?
while( (lastChar >= 0) while( (lastChar >= 0)

View File

@ -1149,7 +1149,9 @@ struct DXFLIB_EXPORT DL_DimensionData
style( astyle ), style( astyle ),
angle( aangle ), angle( aangle ),
linearFactor( alinearFactor ), linearFactor( alinearFactor ),
dimScale( adimScale ) dimScale( adimScale ),
arrow1Flipped( false ),
arrow2Flipped(false )
{ {
} }