validate: Fix memory leak in gst_validate_abort()

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5757>
This commit is contained in:
Philippe Normand 2023-12-02 12:38:11 +00:00 committed by GStreamer Marge Bot
parent 97817ef44c
commit 0b5e2ee80a

View file

@ -1554,6 +1554,7 @@ gst_validate_abort (const gchar * format, ...)
va_end (var_args);
g_print ("Bail out! %s\n", tmp);
g_free (tmp);
exit (-18);
}