Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions network/config/bindview/BINDVIEW.CPP
Original file line number Diff line number Diff line change
Expand Up @@ -1444,7 +1444,7 @@ VOID ShowComponentMenu (HWND hwndOwner,
LPARAM lParam)
{
ULONG ulSelection;
POINT pt;
POINT pt{};

GetCursorPos( &pt );
ulSelection = (ULONG)TrackPopupMenu( hComponentSubMenu,
Expand Down Expand Up @@ -1496,7 +1496,7 @@ VOID ShowBindingPathMenu (HWND hwndOwner,
{
MENUITEMINFOW menuItemInfo;
ULONG ulSelection;
POINT pt;
POINT pt{};

//
// Build the shortcut menu depending on whether path is
Expand Down Expand Up @@ -1787,7 +1787,7 @@ HTREEITEM AddToTreeEx (HWND hwndTree,
LPWSTR lpszId;
GUID guidClass;
BOOL fEnabled;
ULONG ulStatus;
ULONG ulStatus{};
HTREEITEM hTreeItem;
TV_INSERTSTRUCTW tvInsertStruc;
HRESULT hr;
Expand Down
Loading