revert offending function

fixes https://github.com/libretro/RetroArch/issues/14528
This commit is contained in:
hunterk 2022-10-19 22:07:20 -05:00 committed by LibretroAdmin
parent 22f43a4b75
commit a90a79fa95

View File

@ -1384,28 +1384,15 @@ bool video_init_thread(const video_driver_t **out_driver, void **out_data,
const video_driver_t *drv, const video_info_t info) const video_driver_t *drv, const video_info_t info)
{ {
thread_video_t *thr = (thread_video_t*)calloc(1, sizeof(*thr)); thread_video_t *thr = (thread_video_t*)calloc(1, sizeof(*thr));
if (!thr) if (!thr)
goto error; return false;
video_thread_set_callbacks(thr, drv); video_thread_set_callbacks(thr, drv);
if (!video_thread_init(thr, info, input, input_data)) thr->driver = drv;
{
thr->video_thread.free(thr);
goto error;
}
*out_driver = &thr->video_thread; *out_driver = &thr->video_thread;
*out_data = thr; *out_data = thr;
return video_thread_init(thr, info, input, input_data);
return true;
error:
*out_driver = NULL;
*out_data = NULL;
return false;
} }
bool video_thread_font_init(const void **font_driver, void **font_handle, bool video_thread_font_init(const void **font_driver, void **font_handle,