Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1c324d35 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

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

parents b16aba88 fa8037c2
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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() {