Convert many sqlite3_realloc() calls to sqlite3_realloc64().

FossilOrigin-Name: 88dce64242552e7443d9fb496f6f3ad71dc5b4a882ce21b7ef1d5ea4e26f1e61
This commit is contained in:
drh
2026-03-02 17:11:44 +00:00
7 changed files with 37 additions and 33 deletions
+1 -1
View File
@@ -5190,7 +5190,7 @@ static int unixShmMap(
}
/* Map the requested memory region into this processes address space. */
apNew = (char **)sqlite3_realloc(
apNew = (char **)sqlite3_realloc64(
pShmNode->apRegion, nReqRegion*sizeof(char *)
);
if( !apNew ){