[2/3] appwiz.cpl: Read uninstallable applications from registry, add to list.

Nikolay Sivov bunglehead at gmail.com
Fri Jul 11 15:49:37 CDT 2008


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




More information about the wine-patches mailing list