Update RpcView.cpp

Set formatting to original RpcView style.
This commit is contained in:
hfiref0x
2019-01-16 14:05:49 +07:00
parent 270401c658
commit 6f8e8f45fc
+3 -3
View File
@@ -189,9 +189,9 @@ void NTAPI InitDecompilerInfo(_In_ RpcInterfaceInfo_T* pRpcInterfaceInfo, _Out_
{
SymboleLength = ((UINT)wcslen(SymboleName) + 1)*sizeof(WCHAR);
pRpcDecompilerInfo->ppProcNameTable[i] = (WCHAR*)OS_ALLOC(SymboleLength);
if (pRpcDecompilerInfo->ppProcNameTable[i] != NULL) {
memcpy(pRpcDecompilerInfo->ppProcNameTable[i], SymboleName, SymboleLength);
}
if (pRpcDecompilerInfo->ppProcNameTable[i] != NULL) {
memcpy(pRpcDecompilerInfo->ppProcNameTable[i], SymboleName, SymboleLength);
}
}
}
PdbUninit(hPdb);