Open xezon opened 2 months ago
@tomsons26 I still think it is wrong in Thyme. We memset too little of the allocated array. It should be sizeof struct * count, no?
Edit: Ah no.
It should be CANDIDATELIST *list = new CANDIDATELIST[count];
instead of CANDIDATELIST *list = new CANDIDATELIST[size];
Let's try this: #1154
Looks like memset had wrong size.