Changeset 6065 for trunk/tools/database/APIImport.cpp
- Timestamp:
- Jun 22, 2001, 7:07:18 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/database/APIImport.cpp
r5531 r6065 1 /* $Id: APIImport.cpp,v 1. 9 2001-04-17 00:24:46bird Exp $ */1 /* $Id: APIImport.cpp,v 1.10 2001-06-22 17:07:18 bird Exp $ */ 2 2 /* 3 3 * … … 248 248 try 249 249 { 250 kFile InFile(pszFilename);250 kFile * pInFile = new kFile(pszFilename); 251 251 252 252 try … … 262 262 try 263 263 { 264 kFilePE *pFile = new kFilePE( &InFile);264 kFilePE *pFile = new kFilePE(pInFile); 265 265 pExportFile = pFile; 266 266 pModuleFile = pFile; … … 270 270 { 271 271 i = i; 272 kFileDef *pFile = new kFileDef( &InFile);272 kFileDef *pFile = new kFileDef(pInFile); 273 273 pExportFile = pFile; 274 274 pModuleFile = pFile; … … 371 371 fprintf(phLog, "%s: error - could not get module name.\n", pszFilename); 372 372 373 delete(pFileBase); 373 if (pFileBase) 374 delete(pFileBase); 374 375 } 375 376 catch (int err)
Note:
See TracChangeset
for help on using the changeset viewer.