Preventing possibility of buffer overwrite.
This commit is contained in:
parent
831d3640cc
commit
3e26b9039d
|
|
@ -490,7 +490,7 @@ class SpanCharacteristic{
|
|||
return(String(c));
|
||||
case FORMAT::STRING:
|
||||
case FORMAT::DATA:
|
||||
sprintf(c,"\"%s\"",u.STRING);
|
||||
sprintf(c,"\"%.61s\"",u.STRING); // Truncating string to 61 chars.
|
||||
return(String(c));
|
||||
} // switch
|
||||
return(String()); // included to prevent compiler warnings
|
||||
|
|
|
|||
Loading…
Reference in New Issue