blob: a08386a46266cdc1e737cffc720f17a2e7f74b6f [file] [log] [blame]
/* { dg-additional-options "-fanalyzer-verbosity=1" } */
#include <stdlib.h>
void
calls_free (void *victim)
{
free (victim); /* { dg-warning "double-'free' of 'victim'" } */
}
extern void do_stuff (void);
struct foo
{
void *m_p;
};
void test (struct foo f)
{
do_stuff ();
calls_free (f.m_p);
do_stuff ();
calls_free (f.m_p); /* { dg-message "passing freed pointer 'f\\.m_p' in call to 'calls_free' from 'test'" } */
do_stuff ();
}