Commit in reactos/subsys/system/regedit on MAIN | |||
hexedit.c | +5 | 1.8 -> 1.9 |
fixed little gdi handle leak
diff -u -r1.8 -r1.9 --- hexedit.c 21 Jun 2004 18:32:36 -0000 1.8 +++ hexedit.c 26 Jun 2004 08:09:55 -0000 1.9 @@ -506,6 +506,11 @@
LocalFree(hed->hBuffer); }
+ if(hed->hFont) + { + DeleteObject(hed->hFont); + } +
SetWindowLong(hed->hWndSelf, 0, 0); HeapFree(GetProcessHeap(), 0, hed);