Merge "Suppress the error warning"
This commit is contained in:
commit
e851f2d617
1 changed files with 2 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue