Suppress the error warning

Bug: https://android-build.googleplex.com/builds/pending/P51300433/aosp_bramble-userdebug/latest/view/logs/build_error.log
Test: None
Change-Id: I2fbd3d8772c50ed9de1c2ba9eb2234966c7dcb84
This commit is contained in:
zijunzhao 2023-03-03 01:33:28 +00:00
parent 42908c45e5
commit f5e1533f2f
1 changed files with 2 additions and 1 deletions

View File

@ -159,7 +159,8 @@ noinline void sigsegv_non_null() {
}
noinline void fprintf_null() {
fprintf(nullptr, "oops");
FILE* sneaky_null = nullptr;
fprintf(sneaky_null, "oops");
}
noinline void readdir_null() {