glupload: Fix valid compiler warning

gstglupload.c:442:32: error: if statement has empty body [-Werror,-Wempty-body]
    if (upload->texture_ids[i]);
                               ^
This commit is contained in:
Sebastian Dröge 2014-11-24 11:32:33 +01:00 committed by Tim-Philipp Müller
parent ce58219124
commit 3c7095e5ad

View file

@ -439,9 +439,9 @@ _upload_meta_upload_free (gpointer impl)
gint i;
for (i = 0; i < GST_VIDEO_MAX_PLANES; i++) {
if (upload->texture_ids[i]);
gst_gl_context_del_texture (upload->upload->context,
&upload->texture_ids[i]);
if (upload->texture_ids[i])
gst_gl_context_del_texture (upload->upload->context,
&upload->texture_ids[i]);
}
}