Changes between Version 26 and Version 27 of Coverity
- Timestamp:
- Dec 11, 2011, 6:18:19 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Coverity
v26 v27 49 49 == Common defects and their resolutions == 50 50 * STACK_USE - Not really a bug. It turns out that the new version of the Coverity software automatically enabled this checker with default values, when it had been disabled before. This checker is usually used to analyze for defects in kernel or embedded system code which have tight stack limits. For Haiku, "Ignore" is probably the best resolution for now. 51 52 * SECURE_CODING - Usually a warning about potential buffer/string overflow. In most cases, replacing a strcpy() with strlcpy() (DO NOT use strncpy!), sprintf() with snprintf(), or strcat() with strlcat() will satisfy this checker. 51 53 52 54 == Runs submitted ==