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

recursively call os2Open() with the incoming VFS pointer, in case it gets used in the future (CVS 5496)

FossilOrigin-Name: 6eac49f046d089dac90c0bf72e8c3fc583694dcd
This commit is contained in:
pweilbacher
2008-07-29 18:38:47 +00:00
parent 6d2a4b057d
commit af3cc1821d
3 changed files with 9 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.53 2008/07/29 18:35:54 pweilbacher Exp $
** $Id: os_os2.c,v 1.54 2008/07/29 18:38:47 pweilbacher Exp $
*/
#include "sqliteInt.h"
@@ -835,7 +835,7 @@ static int os2Open(
pFile->pathToDel = NULL;
if( flags & SQLITE_OPEN_READWRITE ){
OSTRACE2( "OPEN %d Invalid handle\n", ((flags | SQLITE_OPEN_READONLY) & ~SQLITE_OPEN_READWRITE) );
return os2Open( 0, zName, id,
return os2Open( pVfs, zName, id,
((flags | SQLITE_OPEN_READONLY) & ~SQLITE_OPEN_READWRITE),
pOutFlags );
}else{