Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 6 additions & 6 deletions network/config/bindview/BINDING.CPP
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// o How to enumerate binding interfaces.
// o How to enable/disable bindings.
//
// Notes:
// Notes:
//
// Author: Alok Sinha 15-May-01
//
Expand Down Expand Up @@ -183,7 +183,7 @@ VOID WriteBindingPath (FILE *fp,
fwprintf( fp, L"\n%s", lpszName );
}
}

ReleaseRef( pencbp );
}
else {
Expand Down Expand Up @@ -389,7 +389,7 @@ VOID ListBindings (INetCfgComponent *pncc,
HTREEITEM hTreeItem;
ULONG ulIndex;
HRESULT hr;

hr = HrGetBindingPathEnum( pncc,
EBP_BELOW,
&pencbp );
Expand Down Expand Up @@ -429,7 +429,7 @@ VOID ListBindings (INetCfgComponent *pncc,

ulIndex++;
}

ReleaseRef( pencbp );
}
else {
Expand Down Expand Up @@ -533,7 +533,7 @@ VOID ListInterfaces (INetCfgBindingPath *pncbp,
//
// Function: HandleBindingPathOperation
//
// Purpose:
// Purpose:
//
// Arguments:
// hwndOwner [in] Owner window.
Expand Down Expand Up @@ -778,7 +778,7 @@ FindBindingPath (
&pncc );

if ( hr == S_OK ) {

hr = HrGetBindingPathEnum( pncc,
EBP_BELOW,
&pencbp );
Expand Down
2 changes: 1 addition & 1 deletion network/config/bindview/BINDVIEW.H
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//
// Contents: Function Prototypes
//
// Notes:
// Notes:
//
// Author: Alok Sinha 15-May-01
//
Expand Down
4 changes: 2 additions & 2 deletions network/config/bindview/NetCfgAPI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ HRESULT HrInstallNetComponent (IN INetCfg *pnc,
{
hr = E_OUTOFMEMORY;
break;
}
}
ZeroMemory(DirWithDrive, (_MAX_DRIVE + _MAX_DIR) * sizeof(WCHAR));

//
Expand Down Expand Up @@ -329,7 +329,7 @@ HRESULT HrInstallNetComponent (IN INetCfg *pnc,
{
CoTaskMemFree(DirWithDrive);
DirWithDrive = NULL;
}
}

return hr;
}
Expand Down
2 changes: 1 addition & 1 deletion network/config/bindview/NetCfgAPI.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//
// Contents: Functions Prototypes
//
// Notes:
// Notes:
//
// Author: Alok Sinha 15-May-01
//
Expand Down
2 changes: 1 addition & 1 deletion network/config/bindview/RESOURCE.H
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#define IDI_DISABLE 40007

// Next default values for new objects
//
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 109
Expand Down
6 changes: 3 additions & 3 deletions network/modem/fakemodem/driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ Return Value:
&defQueue // pointer to default queue
);
__analysis_assume(queueConfig.EvtIoStop == 0);

if (!NT_SUCCESS (status)) {

//
Expand All @@ -256,7 +256,7 @@ Return Value:
&fmDeviceData->FmReadQueue
);
__analysis_assume(queueConfig.EvtIoStop == 0);

if (!NT_SUCCESS (status)) {
KdPrint( ("WdfIoQueueCreate failed 0x%x\n", status));
return status;
Expand All @@ -276,7 +276,7 @@ Return Value:
&fmDeviceData->FmMaskWaitQueue
);
__analysis_assume(queueConfig.EvtIoStop == 0);

if (!NT_SUCCESS (status)) {
KdPrint( ("WdfIoQueueCreate failed 0x%x\n", status));
return status;
Expand Down
Loading