Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gst-plugins-good
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
George Kiagiadakis
gst-plugins-good
Commits
2d276e1b
Commit
2d276e1b
authored
Jul 02, 2013
by
Wim Taymans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtspsrc: avoid strdup
parent
f01b751e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
gst/rtsp/gstrtspsrc.c
gst/rtsp/gstrtspsrc.c
+2
-3
No files found.
gst/rtsp/gstrtspsrc.c
View file @
2d276e1b
...
...
@@ -5458,9 +5458,8 @@ gst_rtspsrc_setup_streams (GstRTSPSrc * src, gboolean async)
goto
create_request_failed
;
}
/* select transport, copy is made when adding to header so we can free it. */
gst_rtsp_message_add_header
(
&
request
,
GST_RTSP_HDR_TRANSPORT
,
transports
);
g_free
(
transports
);
/* select transport */
gst_rtsp_message_take_header
(
&
request
,
GST_RTSP_HDR_TRANSPORT
,
transports
);
/* if the user wants a non default RTP packet size we add the blocksize
* parameter */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment