Miss Islington (bot)
4ee30c4244
bpo-41815: SQLite: segfault if backup called on closed database (GH-22322)
GH- [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)
```
(cherry picked from commit bfee9fad84531a471fd7864e88947320669f68e2)
Co-authored-by: Peter McCormick <peter@pdmccormick.com>
2020-09-21 15:05:17 -07:00
..
2020-02-11 17:46:57 +01:00
2019-03-19 22:10:18 +09:00
2020-09-21 15:05:17 -07:00
2019-07-12 20:15:48 -07:00
2020-03-21 15:53:28 +02:00
2019-03-19 22:10:18 +09:00
2020-04-15 02:35:41 +02:00
2019-03-19 22:10:18 +09:00
2020-05-26 05:38:51 -07:00
2019-03-19 22:10:18 +09:00
2020-02-07 09:17:07 +01:00
2019-03-19 22:10:18 +09:00
2019-09-17 09:20:56 +03:00
2019-03-19 22:10:18 +09:00
2020-09-17 00:57:07 -07:00
2019-03-19 22:10:18 +09:00
2019-10-23 11:09:01 +03:00
2019-10-23 11:09:01 +03:00