Interesting article about the safe reimplementation of strcpy in curl. (Or "why programming in C is difficult".)
Note that one of the motivations was to avoid stupid "security reports" from automatic scans.


daniel.haxx.se
no strcpy either
Some time ago I mentioned that we went through the curl source code and eventually got rid of all strncpy() calls. strncpy() is a weird function wi...