2006-08-10  Christian Persch  <chpe@gnome.org>

	Fixes #350556

	* sound-properties-capplet.c (add_selected_device): fixed mem leak.
This commit is contained in:
Christian Persch 2006-08-10 11:51:46 +00:00 committed by Rodrigo Moya
parent 05e9428490
commit 42691c98b1
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2006-08-10 Christian Persch <chpe@gnome.org>
Fixes #350556
* sound-properties-capplet.c (add_selected_device): fixed mem leak.
2006-08-02 Klaus Pedersen <klaus.kruse.pedersen@mail.tele.dk>
Fixes #349254

View file

@ -623,6 +623,7 @@ add_selected_device (const gchar *profile, int type)
add_device (type, pipeline, description, profile);
g_free (description);
g_free (pipeline);
}