Ways to make the code safer (and more correct).
- Don't make an unnecessary copy. From the example, there's no apparent requirement that you actually need to copy
somestring. You can output it directly. - If you have to make a copy of a string, write a function to do it (or use strdup if you have it). Then you only have to get it right in one place.
- Whenever possible, initialize the pointer to the copy immediately when you declare it.
- Remember to allocate space for the null terminator.
- Remember to check the return value from
malloc. - Remember to free the
malloc'ed memory. - Don't call
printfwith an untrusted format string. Useprintf("%s", copy"copy)orputs(copy). - Use an object-oriented language with a string class or any language with built-in string support to avoid most of these problems.
