libobs-opengl: Use bfree instead of free

The variable is allocated with a bmalloc -- not a malloc.

Closes jp9000/obs-studio#473
master
michael bishop 2015-09-07 15:55:03 -03:00 committed by jp9000
parent 1b477945f3
commit cd7a648ba4
1 changed files with 1 additions and 1 deletions

View File

@ -375,7 +375,7 @@ fail_context_create:
fail_load_gl:
XCloseDisplay(display);
fail_display_open:
free(plat);
bfree(plat);
plat = NULL;
success:
UNUSED_PARAMETER(adapter);