[fix] Bug in suffix expansion affecting inseparable suffixes like burg as well as ordinal suffixes like first=>1st

This commit is contained in:
Al
2015-12-19 01:29:49 -05:00
parent b2a944830a
commit 39e83961ef
3 changed files with 46 additions and 46 deletions

View File

@@ -948,10 +948,10 @@ char *transliterate(char *trans_name, char *str, size_t len) {
char_array_destroy(revisit);
}
free(original_str);
log_debug("original_str=%s\n", original_str);
free(original_str);
str = char_array_to_string(new_str);
log_debug("new_str = %s\n", str);