Bug path

krb5_recvauth
‘krb5_recvauth’: events 1-2
22void krb5_recvauth(krb5_data inbuf_a)
^~~~~~~~~~~~~
|
(1) entry to ‘krb5_recvauth’
23{
24 recvauth_common(inbuf_a);
~~~~~~~~~~~~~~~~~~~~~~~~
|
(2) calling ‘recvauth_common’ from ‘krb5_recvauth’
recvauth_common
‘recvauth_common’: events 3-5
13recvauth_common(krb5_data common)
^~~~~~~~~~~~~~~
|
(3) entry to ‘recvauth_common’
14{
15 free(common.data);
~~~~~~~~~~~~~~~~~
|
(4) first ‘free’ here
16 free(common.data); /* { dg-warning "double-'free' of 'common.data'" "inner warning" } */
~~~~~~~~~~~~~~~~~
|
(5) second ‘free’ here; first ‘free’ was at (4)