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 )
|
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)
|
||||||
|
|
|
@ -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 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue