SQLite

View Ticket
Login
Ticket Hash: 94c04eaadb5382b3859a50b94c5586e849bd92af
Title: Crash in asyncRead() with large (>2GB) database file
Status: Closed Type: Code_Defect
Severity: Critical Priority: Immediate
Subsystem: Extensions Resolution: Fixed
Last Modified: 2009-10-19 10:04:01
Version Found In: 3.6.18
Description:
I've encountered segmentation fault at sqlite3async.c:715. The problem
is on sqlite3async.c:712:

       nCopy = (int)MIN(pWrite->nByte-iBeginIn, iAmt-iBeginOut);

My actual numbers: iAmt = 16, iBeginOut = 2147844072. After
subtraction we're getting -2147844056 or FFFFFFFF7FFA8028 in hex which
after truncating to int gives 7FFA8028, a positive number. And it
blows away the next check if( nCopy>0 ).