coverity: add modeling file to reduce false positives.

This commit is contained in:
Gustavo Sverzut Barbieri 2016-12-19 11:09:02 -02:00
parent 7de5146a3b
commit 3ff5dc33e2
1 changed files with 26 additions and 0 deletions

26
data/coverity/model.c Normal file
View File

@ -0,0 +1,26 @@
/*
* Coverity Model - not a real source file.
*
* See https://scan.coverity.com/tune
* See https://scan.coverity.com/models
*
* Coverity doesn't detect changes to this file, update manually at:
*
* https://scan.coverity.com/projects/enlightenment-foundation-libraries?tab=analysis_settings
*/
typedef struct {
int fd;
} Eo;
/* force Coverity to understand these take ownership of fd */
void efl_loop_fd_set(Eo *obj, int fd)
{
obj->fd = fd;
}
void efl_loop_fd_file_set(Eo *obj, int fd)
{
obj->fd = fd;
}