fix a few Coverity warnings
This commit is contained in:
parent
09587ef4fb
commit
20880268bf
|
@ -370,7 +370,7 @@ bool DL_Dxf::getStrippedLine( std::string& s, unsigned int size,
|
|||
bool DL_Dxf::stripWhiteSpace( char** s, bool stripSpace )
|
||||
{
|
||||
// last non-NULL char:
|
||||
std::size_t lastChar = strlen( *s ) - 1;
|
||||
int lastChar = strlen( *s ) - 1;
|
||||
|
||||
// Is last character CR or LF?
|
||||
while( (lastChar >= 0)
|
||||
|
|
|
@ -1149,7 +1149,9 @@ struct DXFLIB_EXPORT DL_DimensionData
|
|||
style( astyle ),
|
||||
angle( aangle ),
|
||||
linearFactor( alinearFactor ),
|
||||
dimScale( adimScale )
|
||||
dimScale( adimScale ),
|
||||
arrow1Flipped( false ),
|
||||
arrow2Flipped(false )
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue