fitsio
fitsio copied to clipboard
Fix potential free of null pointer in stringlist_delete
Closes #433
If the pointer given to free is null, the function does nothing
Thus the check if (slist->data != NULL) { is all that is needed, which ensures there is an array over which we can loop