mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
rtspsrc: Remove dead assignment.
t is being overwritten after, before it's used.
This commit is contained in:
parent
84b6d07c75
commit
4c60f9ef29
1 changed files with 1 additions and 1 deletions
|
@ -948,7 +948,7 @@ gst_rtspsrc_parse_rtpmap (const gchar * rtpmap, gint * payload, gchar ** name,
|
|||
{
|
||||
gchar *p, *t;
|
||||
|
||||
t = p = (gchar *) rtpmap;
|
||||
p = (gchar *) rtpmap;
|
||||
|
||||
PARSE_INT (p, " ", *payload);
|
||||
if (*payload == -1)
|
||||
|
|
Loading…
Reference in a new issue