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

Commit b5ec5730 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

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



Change-Id: I09249a4756306b74f3716c767d4514e74169cf0c
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 8d6f627c 00b47f18
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() {