martong added a comment.

We might get false positives in case of certain substring operations.
Consider the case of copying a substring, pseudo code below:

  const char * s = "abcdefg";
  int offset = my_find('d', s);
  // I want to copy "defg"
  char *new_subststring = (char*) malloc(strlen(s + offset));
  strcpy(...);


https://reviews.llvm.org/D39121



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to