1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-18 10:21:03 +03:00

finally make temporary and journal files hidden in release builds on OS/2 (CVS 5497)

FossilOrigin-Name: c449a95c4f7abd2bfb92bed0e3a9ae874350ce79
This commit is contained in:
pweilbacher
2008-07-29 18:49:28 +00:00
parent af3cc1821d
commit d6a75f8160
3 changed files with 11 additions and 9 deletions

View File

@@ -12,7 +12,7 @@
**
** This file contains code that is specific to OS/2.
**
** $Id: os_os2.c,v 1.54 2008/07/29 18:38:47 pweilbacher Exp $
** $Id: os_os2.c,v 1.55 2008/07/29 18:49:29 pweilbacher Exp $
*/
#include "sqliteInt.h"
@@ -801,7 +801,9 @@ static int os2Open(
if( flags & (SQLITE_OPEN_TEMP_DB | SQLITE_OPEN_TEMP_JOURNAL
| SQLITE_OPEN_SUBJOURNAL) ){
char pathUtf8[CCHMAXPATH];
/*ulFileAttribute = FILE_HIDDEN; //for debugging, we want to make sure it is deleted*/
#ifdef NDEBUG /* when debugging we want to make sure it is deleted */
ulFileAttribute = FILE_HIDDEN;
#endif
ulFileAttribute = FILE_NORMAL;
os2FullPathname( pVfs, zName, CCHMAXPATH, pathUtf8 );
pFile->pathToDel = convertUtf8PathToCp( pathUtf8 );