Merge "Handle with the nonnull case in a tricky way"
This commit is contained in:
commit
1c324d3559
1 changed files with 2 additions and 1 deletions
|
|
@ -164,7 +164,8 @@ noinline void fprintf_null() {
|
|||
}
|
||||
|
||||
noinline void readdir_null() {
|
||||
readdir(nullptr);
|
||||
DIR* sneaky_null = nullptr;
|
||||
readdir(sneaky_null);
|
||||
}
|
||||
|
||||
noinline int strlen_null() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue