Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-07-13 | stop setting local pntrs NULL when globals needed (tmp commented out) | ben | 1 | -2/+7 | |
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 | fix reallocs that saved pointer only in local vars | ben | 1 | -8/+10 | |
2010-07-12 | wip: bugfix: interface | Jan Klemkow | 1 | -1/+7 | |
2010-07-12 | move sources to src/ | ben | 1 | -0/+93 | |