show/hide this revision's text 2 fixed a typo

Ways to make the code safer (and more correct).

  1. 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.
  2. 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.
  3. Whenever possible, initialize the pointer to the copy immediately when you declare it.
  4. Remember to allocate space for the null terminator.
  5. Remember to check the return value from malloc.
  6. Remember to free the malloc'ed memory.
  7. Don't call printf with an untrusted format string. Use printf("%s", copy"copy) or puts(copy).
  8. Use an object-oriented language with a string class or any language with built-in string support to avoid most of these problems.
show/hide this revision's text 1

Ways to make the code safer (and more correct).

  1. 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.
  2. 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.
  3. Whenever possible, initialize the pointer to the copy immediately when you declare it.
  4. Remember to allocate space for the null terminator.
  5. Remember to check the return value from malloc.
  6. Remember to free the malloc'ed memory.
  7. Don't call printf with an untrusted format string. Use printf("%s", copy") or puts(copy).
  8. Use an object-oriented language with a string class or any language with built-in string support to avoid most of these problems.