After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 594133 - [rtspsrc] leaks authentication info
[rtspsrc] leaks authentication info
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-good
git master
Other All
: Normal normal
: 0.10.17
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2009-09-04 12:56 UTC by Arnout Vandecappelle
Modified: 2009-09-08 11:31 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
patch leak in gstrtspsrc (364 bytes, patch)
2009-09-04 12:56 UTC, Arnout Vandecappelle
committed Details | Review

Description Arnout Vandecappelle 2009-09-04 12:56:42 UTC
Created attachment 142471 [details] [review]
patch leak in gstrtspsrc

In gst_rtspsrc_parse_digest_challenge(), rtspsrc does a g_strndup of the auth
header items and then passes them to gst_rtsp_connection_set_auth_param()
without freeing.

Patch attached.
Comment 1 Wim Taymans 2009-09-08 11:31:15 UTC
commit 19455200b17f400f14a29c9b49adadde2c9fd246
Author: Arnout Vandecappelle <arnout@mind.be>
Date:   Tue Sep 8 13:30:29 2009 +0200

    rtspsrc: fix memory leak
    
    In gst_rtspsrc_parse_digest_challenge(), rtspsrc does a g_strndup of the auth
    header items and then passes them to gst_rtsp_connection_set_auth_param()
    without freeing.
    
    Fixes #594133