-
Notifications
You must be signed in to change notification settings - Fork 1k
v3.0 upgrade sqlite3 to v3.50.0 #4972
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: v3.0
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sqlite-amalgamation-3430200 | ||
sqlite-amalgamation-3500000/ |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
--- sqlite3.c.orig 2024-04-04 15:53:48.801105000 +0000 | ||
+++ sqlite3.c 2024-04-04 15:54:51.423876000 +0000 | ||
@@ -25175,7 +25175,7 @@ | ||
@@ -26316,7 +26316,7 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// ctype.h | ||
-extern int toupper (int __c) __THROW; | ||
+extern int toupper (int __c); | ||
+//extern int toupper (int __c) __THROW; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The patch for Is this change to comment out the |
||
|
||
// SHA256_crypt | ||
char * sha256_crypt_r (const char *key, const char *salt, char *buffer, int buflen); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line, which applied the
sqlite3.c-multiplication-overflow.patch
, has been removed. Could you please confirm that the specific multiplication overflow issue addressed by this patch (potentially related to lookaside memory allocation calculations, based on the deleted patch content) is fixed or no longer relevant in SQLite version 3.50.0? Reintroducing such an overflow could lead to correctness or stability issues.