Replace strncpy usage in favor of Strlcpy to get rid of compiler warnings.
This commit is contained in:
parent
ecbfca1084
commit
eecb2e77b6
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
#include "ld65dbg.h"
|
#include "ld65dbg.h"
|
||||||
|
#include "utils/StringUtils.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ld65
|
namespace ld65
|
||||||
|
@ -304,7 +305,7 @@ namespace ld65
|
||||||
}
|
}
|
||||||
else if ( strcmp( key, "name") == 0 )
|
else if ( strcmp( key, "name") == 0 )
|
||||||
{
|
{
|
||||||
strncpy( name, val, sizeof(name));
|
Strlcpy( name, val, sizeof(name));
|
||||||
}
|
}
|
||||||
else if ( strcmp( key, "size") == 0 )
|
else if ( strcmp( key, "size") == 0 )
|
||||||
{
|
{
|
||||||
|
@ -332,7 +333,7 @@ namespace ld65
|
||||||
}
|
}
|
||||||
else if ( strcmp( key, "type") == 0 )
|
else if ( strcmp( key, "type") == 0 )
|
||||||
{
|
{
|
||||||
strncpy( type, val, sizeof(type));
|
Strlcpy( type, val, sizeof(type));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue