Safer string concatenation
With strncat() there is a danger of buffer overflow as thelength of the string already in the destination buffer wasnever checked. Added safe string concatenation functions tom_misc and replaced the use of strncat() in the engine.
View differences
Safer string concatenation
With strncat() there is a danger of buffer overflow as the
length of the string already in the destination buffer was
never checked. Added safe string concatenation functions to
m_misc and replaced the use of strncat() in the engine.