diff options
author | Peter McCormick <peter@pdmccormick.com> | 2020-09-20 03:40:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-20 03:40:46 (GMT) |
commit | bfee9fad84531a471fd7864e88947320669f68e2 (patch) | |
tree | 23627320837bd9104bc215ed274fc07eafce0b44 /Modules/_sqlite | |
parent | c8c70e78762315643fcd132911bad38842a3e8af (diff) | |
download | cpython-bfee9fad84531a471fd7864e88947320669f68e2.zip cpython-bfee9fad84531a471fd7864e88947320669f68e2.tar.gz cpython-bfee9fad84531a471fd7864e88947320669f68e2.tar.bz2 |
bpo-41815: SQLite: segfault if backup called on closed database (GH-22322)
# [bpo-41815](): SQLite: fix segfault if backup called on closed database
Attempting to backup a closed database will trigger segfault:
```python
import sqlite3
target = sqlite3.connect(':memory:')
source = sqlite3.connect(':memory:')
source.close()
source.backup(target)
```
Diffstat (limited to 'Modules/_sqlite')
-rw-r--r-- | Modules/_sqlite/connection.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/_sqlite/connection.c b/Modules/_sqlite/connection.c index f765ba1..81fc133 100644 --- a/Modules/_sqlite/connection.c +++ b/Modules/_sqlite/connection.c @@ -1514,6 +1514,10 @@ pysqlite_connection_backup(pysqlite_Connection *self, PyObject *args, PyObject * sleep_ms = (int)ms; } + if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { + return NULL; + } + if (!pysqlite_check_connection((pysqlite_Connection *)target)) { return NULL; } |