Updated copyright notices to include the year 2018.
global: start relying on buffer_free(NULL) being a no-op Cleanup performed with the following semantic patch: @@ expression E; @@ - if (E != NULL) { - buffer_free(&E); - } + buffer_free(&E);
global: start relying on timeout_remove(NULL) being a no-op Cleanup performed with the following semantic patch: @@ expression E; @@ - if (E != NULL) { - timeout_remove(&E); - } + timeout_remove(&E);
Updated copyright notices to include the year 2017.
lib-test: Fix memory leak in test-ostream
lib-test: Fix illegal memory access in test-ostream
lib-test: Added test_ostream for testing nonblocking ostreams.