diff options
Diffstat (limited to 'dep/CascLib/src/common/RootHandler.cpp')
-rw-r--r-- | dep/CascLib/src/common/RootHandler.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dep/CascLib/src/common/RootHandler.cpp b/dep/CascLib/src/common/RootHandler.cpp index df9953f3ea6..0ecbee981fb 100644 --- a/dep/CascLib/src/common/RootHandler.cpp +++ b/dep/CascLib/src/common/RootHandler.cpp @@ -28,7 +28,7 @@ LPBYTE RootHandler_Search(TRootHandler * pRootHandler, struct _TCascSearch * pSe // Check if the root structure is valid at all if(pRootHandler == NULL) return NULL; - + return pRootHandler->Search(pRootHandler, pSearch, PtrFileSize, PtrLocaleFlags); } @@ -46,7 +46,7 @@ LPBYTE RootHandler_GetKey(TRootHandler * pRootHandler, const char * szFileName) // Check if the root structure is valid at all if(pRootHandler == NULL) return NULL; - + return pRootHandler->GetKey(pRootHandler, szFileName); } @@ -59,7 +59,7 @@ void RootHandler_Dump(TCascStorage * hs, LPBYTE pbRootHandler, DWORD cbRootHandl { // Create the dump file dc = CreateDumpContext(hs, szNameFormat); - if(dc != NULL) + if(dc != NULL) { // Dump the content and close the file hs->pRootHandler->Dump(hs, dc, pbRootHandler, cbRootHandler, szListFile, nDumpLevel); |