Add commit->msg_encoding, allocate msg dynamicly.

This commit is contained in:
Jonathan Bastien-Filiatrault 2007-10-26 18:09:06 -04:00
parent 72ede12551
commit 3845e177e4
4 changed files with 10 additions and 1 deletions

View file

@ -265,6 +265,8 @@ void *cgit_free_commitinfo(struct commitinfo *info)
free(info->committer);
free(info->committer_email);
free(info->subject);
free(info->msg);
free(info->msg_encoding);
free(info);
return NULL;
}