Commit fe470694 authored by Alexandre Julliard's avatar Alexandre Julliard

user32: Remove redundant LocalUnlock calls.

parent baceb8d0
......@@ -4254,11 +4254,9 @@ static LRESULT EDIT_WM_Destroy(EDITSTATE *es)
LINEDEF *pc, *pp;
if (es->hloc32W) {
while (LocalUnlock(es->hloc32W)) ;
LocalFree(es->hloc32W);
}
if (es->hloc32A) {
while (LocalUnlock(es->hloc32A)) ;
LocalFree(es->hloc32A);
}
if (es->hloc16) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment