Snap for 9712464 from 9bdd5f09ff to udc-release

Change-Id: I8cb30ad2ece85ca7fcc265dce571b01aa1a1bd36
This commit is contained in:
Android Build Coastguard Worker 2023-03-09 02:31:44 +00:00
commit 7a2c007984
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() {