mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
sdpmessage: Remove dead assignment
p is overridden before being used (as the for() loop iterator)
This commit is contained in:
parent
f4c9267265
commit
66ad2c3d40
1 changed files with 1 additions and 1 deletions
|
@ -748,7 +748,7 @@ gst_sdp_message_as_uri (const gchar * scheme, const GstSDPMessage * msg)
|
|||
g_return_val_if_fail (scheme != NULL, NULL);
|
||||
g_return_val_if_fail (msg != NULL, NULL);
|
||||
|
||||
p = serialized = gst_sdp_message_as_text (msg);
|
||||
serialized = gst_sdp_message_as_text (msg);
|
||||
|
||||
lines = g_string_new ("");
|
||||
g_string_append_printf (lines, "%s:///#", scheme);
|
||||
|
|
Loading…
Reference in a new issue