Fix mixed line endings

This commit is contained in:
Zheng, Lei
2022-04-26 21:45:10 +08:00
committed by Chris Hennes
parent 2753dd4ca7
commit 3ef438eaf0
66 changed files with 344 additions and 344 deletions

View File

@@ -222,7 +222,7 @@ HRESULT CFCStdExtractor::GetLocation(LPWSTR pszPathBuffer,
DWORD *pdwFlags)
{
m_bmSize = *prgSize;
if (*pdwFlags & IEIFLAG_ASYNC)
if (*pdwFlags & IEIFLAG_ASYNC)
return E_PENDING;
return NOERROR;
}
@@ -298,7 +298,7 @@ HRESULT CFCStdExtractor::GetDateStamp(FILETIME *pDateStamp)
// open the file and get last write time
HANDLE hFile = CreateFile(m_szFile,GENERIC_READ,FILE_SHARE_READ,NULL,
OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL);
if(!hFile)
if(!hFile)
return E_FAIL;
GetFileTime(hFile,&ftCreationTime,&ftLastAccessTime,&ftLastWriteTime);
CloseHandle(hFile);