glib/tests/unix: Free fds before exiting

Old valgrind wasn't spotting this but we're smarter now!
This commit is contained in:
Marco Trevisan (Treviño) 2024-05-24 19:10:08 +02:00
parent c76cc8fe72
commit 3b8c1d92a5

View File

@ -161,6 +161,7 @@ test_closefrom (void)
}
}
g_free (fds);
_exit (0);
}