1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Avoid an unnecessary initialization of the szFile field of unixFile in

the unix VFS.

FossilOrigin-Name: 6484fb5a25c2a0e5d26694285a4908a22c67ba17
This commit is contained in:
drh
2014-06-09 20:39:03 +00:00
parent 4fd7111dcb
commit 77ae7ca643
3 changed files with 8 additions and 8 deletions

View File

@@ -5794,7 +5794,7 @@ static int unixOpen(
}
if( isDelete ){
p->szFile = 0;
assert( p->szFile==0 );
#if OS_VXWORKS
zPath = zName;
#else