rtph264pay: fix uninitialized variable

This commit is contained in:
Mark Nauwelaerts 2009-12-23 19:39:05 +01:00
parent 9f098b352b
commit 05307c46e7

View file

@ -623,7 +623,7 @@ static GstFlowReturn
gst_rtp_h264_pay_send_sps_pps (GstBaseRTPPayload * basepayload,
GstRtpH264Pay * rtph264pay, GstClockTime timestamp)
{
GstFlowReturn ret;
GstFlowReturn ret = GST_FLOW_OK;
GList *walk;
for (walk = rtph264pay->sps; walk; walk = g_list_next (walk)) {