mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
rtph263pay: fix leak
Coverity 1212157
This commit is contained in:
parent
6ef26e4a8a
commit
fe4c5b92b1
1 changed files with 2 additions and 1 deletions
|
@ -1713,7 +1713,8 @@ gst_rtp_h263_pay_flush (GstRtpH263Pay * rtph263pay)
|
|||
if (!gst_rtp_h263_pay_mode_B_fragment (rtph263pay, context,
|
||||
context->gobs[i])) {
|
||||
GST_ERROR ("There was an error fragmenting in mode B");
|
||||
return GST_FLOW_ERROR;
|
||||
ret = GST_FLOW_ERROR;
|
||||
goto end;
|
||||
}
|
||||
} else {
|
||||
//IMPLEMENT C mode
|
||||
|
|
Loading…
Reference in a new issue