johnmehr / gitup

A minimalist, dependency-free FreeBSD program to clone/pull Git repositories.
BSD 2-Clause "Simplified" License
50 stars 9 forks source link

Don't check for NULL before free() #39

Closed emaste closed 3 years ago

emaste commented 3 years ago

free(NULL) is documented as having no effect; there is no need to check for NULL before calling free.