glimagesink: use g_clear_error instead of g_error_free

replace g_error_free with g_clear_error, as it internally
checks if error variable is valid or not.

https://bugzilla.gnome.org/show_bug.cgi?id=751823
This commit is contained in:
Vineeth TM 2015-07-02 17:08:26 +09:00 committed by Luis de Bethencourt
parent 96d691694a
commit 8ec2e0ad62

View file

@ -788,10 +788,7 @@ context_error:
gl_sink->context = NULL; gl_sink->context = NULL;
} }
if (error) { g_clear_error (&error);
g_error_free (error);
error = NULL;
}
return FALSE; return FALSE;
} }