style: 更新zlib为不带ASMINF编译的静态库

This commit is contained in:
yuanyuanxiang
2021-03-14 20:55:22 +08:00
parent 2c870f1952
commit 225c7e0318
8 changed files with 37 additions and 10 deletions

View File

@@ -510,6 +510,7 @@ BOOL IOCPServer::OnClientReceiving(PCONTEXT_OBJECT ContextObject, DWORD dwTrans
PostRecv(ContextObject); //Ͷ<><CDB6><EFBFBD>µĽ<C2B5><C4BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݵ<EFBFBD><DDB5><EFBFBD><EFBFBD><EFBFBD>
}catch(...)
{
OutputDebugStringA("[ERROR] OnClientReceiving catch an error \n");
ContextObject->InCompressedBuffer.ClearBuffer();
ContextObject->InDeCompressedBuffer.ClearBuffer();
@@ -572,7 +573,9 @@ VOID IOCPServer::OnClientPreSending(CONTEXT_OBJECT* ContextObject, PBYTE szBuffe
RemoveStaleContext(ContextObject);
SAFE_DELETE(OverlappedPlus);
}
}catch(...){}
}catch(...){
OutputDebugStringA("[ERROR] OnClientPreSending catch an error \n");
}
}
BOOL IOCPServer::OnClientPostSending(CONTEXT_OBJECT* ContextObject,ULONG ulCompletedLength)
@@ -603,7 +606,9 @@ BOOL IOCPServer::OnClientPostSending(CONTEXT_OBJECT* ContextObject,ULONG ulCompl
SAFE_DELETE(OverlappedPlus);
}
}
}catch(...){}
}catch(...){
OutputDebugStringA("[ERROR] OnClientPostSending catch an error \n");
}
return FALSE;
}