11 Jul
2008
11 Jul
'08
8:49 p.m.
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