snowballstem / snowball

Snowball compiler and stemming algorithms
https://snowballstem.org/
BSD 3-Clause "New" or "Revised" License
757 stars 173 forks source link

fix potential memory leak (found by clang static analyzer) #56

Closed patperry closed 7 years ago

patperry commented 7 years ago

Minor fix to silence Xcode warning: if stemmer->close is NULL, then sb_stemmer_delete leaks memory.

ojwb commented 7 years ago

Thanks