From 6f8e8f45fcf61063893d7b0b8741d78390443869 Mon Sep 17 00:00:00 2001 From: hfiref0x Date: Wed, 16 Jan 2019 14:05:49 +0700 Subject: [PATCH] Update RpcView.cpp Set formatting to original RpcView style. --- RpcView/RpcView.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/RpcView/RpcView.cpp b/RpcView/RpcView.cpp index e6d997b..a8990ad 100644 --- a/RpcView/RpcView.cpp +++ b/RpcView/RpcView.cpp @@ -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);