summaryrefslogtreecommitdiff
path: root/src/sink_input.c
AgeCommit message (Collapse)AuthorFilesLines
2010-07-22glib-ify datatype, functions etc + header cleanupben1-12/+4
2010-07-15syntax cleanupben1-4/+6
2010-07-15replace sink_input_list implementation with GArrayben1-64/+8
2010-07-13sink_inputs volume made changableben1-6/+6
2010-07-13stop setting local pntrs NULL when globals needed (tmp commented out)ben1-2/+2
all *_clear functions get a pointer that should be freed by that function. after freeing they are set to NULL, but thats only in local scope, i.e: the global pointer stays NOT NULL void sink_list_clear(sink_info** sink_list, ...) { [..] free(sink_list); sink_list = NULL; } so if it is really intended, all clear functions need to be changed to: void sink_list_clear(sink_info ***sink_list,...) { [..] free(*sink_list); *sink_list = NULL; }
2010-07-13sink_input_list_clear: fix null pointer freeben1-1/+2
2010-07-13fix reallocs that saved pointer only in local varsben1-6/+6
2010-07-12wip: bugfix: interfaceJan Klemkow1-3/+6
2010-07-12move sources to src/ben1-0/+78