Tagged Questions
The tr24731 tag has no wiki summary.
30
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 = ...
1
vote
3answers
617 views
Warnings like 'wcstok': This function or variable may be unsafe. Consider using wcstok_s instead
I am just using these wide character literals in my code to learn about them
wchar_t* wpsub = wcstok(names, names_delim);
wpsub = wcstok(NULL, names_delim);
wchar_t* wcopied=new ...