24 | | boxed_int *result = (boxed_int *)wrapped_malloc (sizeof (boxed_int)); |
| | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| | | |
| | (5) possible return of NULL to ‘make_boxed_int’ from ‘wrapped_malloc’ |
25 | | result->i = i; /* { dg-warning "dereference of possibly-NULL 'result'" } */ |
| | ~~~~~~~~~~~~~ |
| | | |
| | (6) ⚠️ ‘result’ could be NULL: unchecked value from (4)
|