mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Issue #17073: Fix some integer overflows in sqlite3 module.
This commit is contained in:
parent
3fd4ab356d
commit
3cf96ac248
8 changed files with 196 additions and 61 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