diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2018-07-18 13:14:26 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2018-07-18 13:14:26 +0200 |
commit | 092a71c2286156a6c0ecdf2ab4d5dc6513b48f0c (patch) | |
tree | 6fb7045f43503ce3f5acfa979763f89f4a730220 | |
parent | 69cb08dd18d91c729a0cf59aa4d8e71cc74be484 (diff) |
added coverity model file
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r-- | model_file.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/model_file.c b/model_file.c new file mode 100644 index 0000000..2799fa8 --- /dev/null +++ b/model_file.c @@ -0,0 +1,21 @@ +/* Coverity Scan model + * + * This is a modeling file for Coverity Scan. Modeling helps to avoid false + * positives. + * + * - A model file can't import any header files. + * - Therefore only some built-in primitives like int, char and void are + * available but not wchar_t, NULL etc. + * - Modeling doesn't need full structs and typedefs. Rudimentary structs + * and similar types are sufficient. + * - An uninitialized local pointer is not an error. It signifies that the + * variable could be either NULL or have some data. + * + * Coverity Scan doesn't pick up modifications automatically. The model file + * must be uploaded by an admin in the analysis settings of + */ + +/* ignore optarg NULL deref false positive for parse_options(...) */ +int parse_options(int argc, char **argv) { + __coverity_panic__(); +} |