Tagged Questions

31
votes
3answers
2k views

Do you use the TR 24731 'safe' functions?

The ISO C committee (ISO/IEC JTC1/SC21/WG14) has published TR 24731-1 and is working on TR 24731-2: TR 24731-1: Extensions to the C Library Part I: Bounds-checking interfaces WG14 is working ...
11
votes
6answers
4k views

Why can't I use fopen?

In the mold of a previous question I asked about the so-called safe library deprecations, I find myself similarly bemused as to why fopen() should be deprecated. The function takes two C strings, and ...
2
votes
5answers
6k 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 = ...