mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-13 02:45:35 +00:00
sdp: cast away const in call to g_free
MSVC warns about the const here. It's safe to cast away. https://bugzilla.gnome.org/show_bug.cgi?id=774293
This commit is contained in:
parent
6e71583d07
commit
6a4c14c39a
1 changed files with 1 additions and 1 deletions
|
@ -361,7 +361,7 @@ gst_sdp_message_copy (const GstSDPMessage * msg, GstSDPMessage ** copy)
|
|||
|
||||
gst_sdp_message_add_time (cp, time->start, time->stop, repeat);
|
||||
|
||||
g_free (repeat);
|
||||
g_free ((gchar **) repeat);
|
||||
}
|
||||
|
||||
len = gst_sdp_message_zones_len (msg);
|
||||
|
|
Loading…
Reference in a new issue