Fix message invalid free
This commit is contained in:
parent
3cbfec54b7
commit
fe19686448
@ -82,8 +82,10 @@ void free_message_headers(struct msg_headers *msghs) {
|
||||
if (msghs->msgs[i]->replyid != NULL) {
|
||||
free(msghs->msgs[i]->replyid);
|
||||
}
|
||||
}
|
||||
free(msghs->msgs);
|
||||
}
|
||||
if (msghs->msg_count > 0) {
|
||||
free(msghs->msgs);
|
||||
}
|
||||
free(msghs);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user