forked from pool/sqlite3
Fix failing Django/Django1 testsuites Fix some more errors OBS-URL: https://build.opensuse.org/request/show/765315 OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=236
13 lines
412 B
Diff
13 lines
412 B
Diff
--- src/os_unix.c_orig 2019-12-26 00:56:55.810897741 +0100
|
|
+++ src/os_unix.c 2019-12-26 00:59:29.904449135 +0100
|
|
@@ -6259,7 +6259,8 @@
|
|
|
|
if( flags==SQLITE_ACCESS_EXISTS ){
|
|
struct stat buf;
|
|
- *pResOut = (0==osStat(zPath, &buf) && buf.st_size>0);
|
|
+ *pResOut = (0==osStat(zPath, &buf) &&
|
|
+ ((buf.st_size>0) || S_ISDIR(buf.st_mode)));
|
|
}else{
|
|
*pResOut = osAccess(zPath, W_OK|R_OK)==0;
|
|
}
|