BUILD: Free the a52 state in the configure compilation test

So ASan does not print a leak report in the middle of the configure
output when it is enabled.
This commit is contained in:
Bastien Bouclet 2018-11-16 14:12:44 +01:00
parent e2e1ec2778
commit 4d36606b27

3
configure vendored
View file

@ -4459,7 +4459,8 @@ extern "C" {
}
int main(void) {
a52_init(0);
a52_state_t *state = a52_init(0);
a52_free(state);
return 0;
}
EOF