Owen Rudge wrote:
+ while (iter) + { + if (iter->title) + HeapFree(hHeap, 0, iter->title); + + if (iter->path) + HeapFree(hHeap, 0, iter->path); + + if (iter->icon) + HeapFree(hHeap, 0, iter->icon); + + if (iter->publisher) + HeapFree(hHeap, 0, iter->icon); + + if (iter->version) + HeapFree(hHeap, 0, iter->icon); + + next = iter->next; + HeapFree(hHeap, 0, iter); + iter = next; + }
Seems to be a copy-paste
Seems to be a copy-paste
Well spotted, apparently both my mentor and I managed to miss this! Shall get that sorted now...