Open tophersmith opened 1 year ago
Unlike std:strcat, abseil's strcat function handles the buffer overflow case correctly by creating a right-sized buffer in memory. Is there a way to have flawfinder ignore absl::StrCat but still find std::strcat?
I'm sure there is, but it'd require extra code to do it :-). Pull requests / merge requests welcome!
Unlike std:strcat, abseil's strcat function handles the buffer overflow case correctly by creating a right-sized buffer in memory. Is there a way to have flawfinder ignore absl::StrCat but still find std::strcat?