Commit 8b20a896 authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  Wipe out some resource leakage.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90233 13f79535-47bb-0310-9956-ffa450edef68
parent 2ee72c8f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -329,6 +329,7 @@ void ShowTryPopupMenu(HWND hWnd)
        GetCursorPos(&pt);
        SetForegroundWindow(NULL);
        TrackPopupMenu(hMenu, TPM_LEFTALIGN|TPM_RIGHTBUTTON, pt.x, pt.y, 0, hWnd, NULL);
        DestroyMenu(hMenu);
    }
}

@@ -352,6 +353,7 @@ void ShowTryServicesMenu(HWND hWnd)
            GetCursorPos(&pt);
            SetForegroundWindow(NULL);
            TrackPopupMenu(hMenu, TPM_LEFTALIGN|TPM_RIGHTBUTTON, pt.x, pt.y, 0, hWnd, NULL);
            DestroyMenu(hMenu);
        }
    }
}