Compare commits

..

No commits in common. "patch-3" and "master" have entirely different histories.

1 changed files with 3 additions and 3 deletions

View File

@ -224,7 +224,7 @@ ValueList * TInfo::valueAdd(char * name, char * value, uint8_t checksum, uint8_t
// Do we have enought space to hold new value ? // Do we have enought space to hold new value ?
if (strlen(me->value) >= lgvalue ) { if (strlen(me->value) >= lgvalue ) {
// Copy it // Copy it
strncpy(me->value, value , lgvalue + 1); strlcpy(me->value, value , lgvalue + 1);
me->checksum = checksum ; me->checksum = checksum ;
// That's all // That's all
@ -427,7 +427,7 @@ char * TInfo::valueGet(char * name, char * value)
if (me->value) { if (me->value) {
// copy to dest buffer // copy to dest buffer
uint8_t lgvalue = strlen(me->value); uint8_t lgvalue = strlen(me->value);
strncpy(value, me->value , lgvalue + 1 ); strlcpy(value, me->value , lgvalue + 1 );
return ( value ); return ( value );
} }
} }
@ -662,7 +662,7 @@ ValueList * TInfo::checkLine(char * pline)
return NULL; return NULL;
// Get our own working copy // Get our own working copy
strncpy( buff, pline, len+1); strlcpy( buff, pline, len+1);
p = &buff[0]; p = &buff[0];
ptok = p; // for sure we start with token name ptok = p; // for sure we start with token name