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

Commit ac1477c9 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Handle with the nonnull case in a tricky way" am: 1c324d35 am: c69c4b51

parents d4f68e3a c69c4b51
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() {