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

Commit e0bd6acc 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:...

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

Original change: https://android-review.googlesource.com/c/platform/system/core/+/2518595



Change-Id: I584de4773a509c28ba28b6fd3f3fbe72ca111eaf
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 296eee1c b5ec5730
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() {