Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-10-19 | Coding style: Seperate line for function return type | Benjamin Franzke | 1 | -3/+6 | |
2010-07-22 | glib-ify datatype, functions etc + header cleanup | ben | 1 | -12/+4 | |
2010-07-15 | syntax cleanup | ben | 1 | -4/+6 | |
2010-07-15 | replace sink_input_list implementation with GArray | ben | 1 | -64/+8 | |
2010-07-13 | sink_inputs volume made changable | ben | 1 | -6/+6 | |
2010-07-13 | stop setting local pntrs NULL when globals needed (tmp commented out) | ben | 1 | -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-13 | sink_input_list_clear: fix null pointer free | ben | 1 | -1/+2 | |
2010-07-13 | fix reallocs that saved pointer only in local vars | ben | 1 | -6/+6 | |
2010-07-12 | wip: bugfix: interface | Jan Klemkow | 1 | -3/+6 | |
2010-07-12 | move sources to src/ | ben | 1 | -0/+78 | |