1
vote
6answers
294 views
sprintf_s with a buffer too small
The following code causes an error and kills my application. It makes sense as the buffer is only 10 bytes long and the text is 22 bytes long (buffer overflow).
char buffer[10];
int length = …
14
votes
3answers
613 views
Do you use the TR 24731 ‘safe’ functions in your C code?
The ISO C committee (ISO/IEC JTC1/SC21/WG14) has published TR 24731-1 and is working on TR 24731-2 (the second part is still under development). From the web site:
TR 24731-1: Extensions to the C …
