mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
sdp: use g_strdup instead of strdup
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3475>
This commit is contained in:
parent
b985c8eadd
commit
2aa34164f6
1 changed files with 1 additions and 1 deletions
|
@ -3439,7 +3439,7 @@ gst_sdp_parse_rtpmap (const gchar * rtpmap, gint * payload, gchar ** name,
|
|||
*params = NULL;
|
||||
goto out;
|
||||
} else {
|
||||
*name = strdup (*name);
|
||||
*name = g_strdup (*name);
|
||||
}
|
||||
|
||||
t = p;
|
||||
|
|
Loading…
Reference in a new issue