mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
Remove unnecessary NULL checks before g_free()
g_free() is NULL-safe
This commit is contained in:
parent
6463ff198e
commit
71c2ddd07d
1 changed files with 1 additions and 2 deletions
|
@ -1091,8 +1091,7 @@ done:
|
|||
if (bdata)
|
||||
gst_buffer_unmap (buf, &map);
|
||||
|
||||
if (mdata)
|
||||
g_free (mdata);
|
||||
g_free (mdata);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue