Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix an operator precedence problem on the [1d8086902e] check-in. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | ex-robust-open |
Files: | files | file ages | folders |
SHA1: |
4f5f3aebe81c3cbe539db3e33ec38fa3 |
User & Date: | drh 2013-03-06 01:41:53.549 |
Context
2013-03-06
| ||
01:48 | Add the SQLITE_READONLY_ROLLBACK extended error code. Do not try to set the permissions on journal or wal files except if the filesize is initially zero (indicating that it is a new file.) (check-in: ce4ac66a4b user: drh tags: trunk) | |
01:41 | Fix an operator precedence problem on the [1d8086902e] check-in. (Closed-Leaf check-in: 4f5f3aebe8 user: drh tags: ex-robust-open) | |
2013-03-05
| ||
16:54 | Failed merge experimental branch with trunk. (check-in: 4e6e07a60e user: dan tags: ex-robust-open) | |
Changes
Changes to src/os_unix.c.
︙ | ︙ | |||
550 551 552 553 554 555 556 | #endif }while( fd<0 && errno==EINTR ); if( fd>=0 ){ if( m!=0 ){ struct stat statbuf; if( osFstat(fd, &statbuf)==0 && statbuf.st_size==0 | | | 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 | #endif }while( fd<0 && errno==EINTR ); if( fd>=0 ){ if( m!=0 ){ struct stat statbuf; if( osFstat(fd, &statbuf)==0 && statbuf.st_size==0 && (statbuf.st_mode&0777)!=m ){ osFchmod(fd, m); } } #if defined(FD_CLOEXEC) && (!defined(O_CLOEXEC) || O_CLOEXEC==0) osFcntl(fd, F_SETFD, osFcntl(fd, F_GETFD, 0) | FD_CLOEXEC); #endif |
︙ | ︙ |