Commit fdf890335455d9470f21863b01f1ecb9bf085c86

DRC 2020-01-07T15:23:08

Eliminate unnecessary NULL checks before free() This programming practice (which exists in other code bases as well) is a by-product of having used early C compilers that did not properly handle free(NULL). All modern compilers should properly handle that. Fixes #398