Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion cfg/posix.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4095,7 +4095,6 @@ The function 'mktemp' is considered to be dangerous due to race conditions and s
<not-uninit/>
<not-bool/>
</arg>
<warn severity="portability">Non reentrant function 'readdir' called. For threadsafe applications it is recommended to use the reentrant replacement function 'readdir_r'.</warn>
</function>
<!-- int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result); -->
<function name="readdir_r">
Expand Down
1 change: 0 additions & 1 deletion test/cfg/posix.c
Original file line number Diff line number Diff line change
Expand Up @@ -991,7 +991,6 @@ void nullPointer(char *p, int fd, pthread_mutex_t mutex)
mkdir(p, 0);
getcwd(0, 0);
// cppcheck-suppress nullPointer
// cppcheck-suppress readdirCalled
readdir(0);
// cppcheck-suppress nullPointer
// cppcheck-suppress utimeCalled
Expand Down
Loading