mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Issue #17073: Fix some integer overflows in sqlite3 module.
This commit is contained in:
parent
d5327d95d2
commit
35c52b687f
8 changed files with 203 additions and 75 deletions
|
@ -35,4 +35,8 @@ int pysqlite_step(sqlite3_stmt* statement, pysqlite_Connection* connection);
|
|||
* Returns the error code (0 means no error occurred).
|
||||
*/
|
||||
int _pysqlite_seterror(sqlite3* db, sqlite3_stmt* st);
|
||||
|
||||
PyObject * _pysqlite_long_from_int64(sqlite3_int64 value);
|
||||
sqlite3_int64 _pysqlite_long_as_int64(PyObject * value);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue