Merge "Suppress the error warning"

This commit is contained in:
Zijun Zhao 2023-03-08 05:16:57 +00:00 committed by Gerrit Code Review
commit e851f2d617

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() {