Skip to content
This repository has been archived by the owner on Aug 1, 2020. It is now read-only.
/ readsb Public archive

various improvements for your consideration #26

Merged
merged 8 commits into from
Dec 7, 2019
Merged
Prev Previous commit
make valgrind a bit happier
  • Loading branch information
wiedehopf committed Dec 7, 2019
commit 7d0567d2cc36e9ef2739a438906c36920f054061
2 changes: 2 additions & 0 deletions readsb.c
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,8 @@ static void cleanup_and_exit(int code) {
while (s) {
ns = s->next;
free(s->listener_fds);
if (s->writer && s->writer->data)
free(s->writer->data);
if (s) free(s);
s = ns;
}
Expand Down