From aa7ef2d6681b05deb458e4dc94a4a9cc8940790e Mon Sep 17 00:00:00 2001 From: Jan Klemkow Date: Tue, 13 Jul 2010 18:01:48 +0200 Subject: change sink-name to sink-device sink-device is the name of the device --- src/sink.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/sink.c') diff --git a/src/sink.c b/src/sink.c index 01f0e04..c5ac593 100644 --- a/src/sink.c +++ b/src/sink.c @@ -15,6 +15,7 @@ sink_info* sink_init(void) { sink_info* sink = (sink_info*) calloc(1, sizeof(sink_info)); sink->name = NULL; + sink->device = NULL; sink->input_counter = 0; sink->input_max = 1; sink->input_list = NULL; @@ -31,6 +32,9 @@ void sink_clear(sink_info* sink) { if (sink->name != NULL) free(sink->name); + + if (sink->device != NULL) + free(sink->device); sink_input_list_clear(sink->input_list, &sink->input_max); -- cgit