Numerous updates:

* Add makefile to install data

* Reference text is now formatted

* UTF-8 string processing
This commit is contained in:
David Baer
2015-08-06 14:31:38 -04:00
parent af38b1eafc
commit cfc0ba7e9a
13 changed files with 269 additions and 7 deletions

View File

@@ -23,7 +23,7 @@ void FreeSermon(Sermon* srm) {
if (srm->numReferences) {
for (i = 0; i < srm->numReferences; i++) {
free(srm->sermonReferences[i].refId);
free(srm->sermonReferences[i].refText);
free(srm->sermonReferences[i].refText.paraText);
}
free(srm->sermonReferences);
}