1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 15:47:46 +02:00

Fixed a calloc getting freed before being used

This commit is contained in:
Sean Qureshi 2013-08-04 13:16:08 -07:00
parent 19efe3727a
commit 4ef0b68602

1
chat.c
View File

@ -256,6 +256,5 @@ ToxWindow new_chat(int friendnum) {
x->friendnum = friendnum;
ret.x = (void*) x;
free(x);
return ret;
}