Merge "Handle with the nonnull case in a tricky way"

This commit is contained in:
Treehugger Robot 2023-04-01 02:46:24 +00:00 committed by Gerrit Code Review
commit 1c324d3559

View file

@ -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() {