mirror of https://github.com/sysown/proxysql
commit
2cba4f56f5
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
sqlite-amalgamation-3430200
|
||||
sqlite-amalgamation-3500400
|
||||
@ -1,13 +0,0 @@
|
||||
@@ -177218,10 +177218,10 @@
|
||||
#ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE
|
||||
if( sz>=LOOKASIDE_SMALL*3 ){
|
||||
nBig = szAlloc/(3*LOOKASIDE_SMALL+sz);
|
||||
- nSm = (szAlloc - sz*nBig)/LOOKASIDE_SMALL;
|
||||
+ nSm = (szAlloc - (long) sz*nBig)/LOOKASIDE_SMALL;
|
||||
}else if( sz>=LOOKASIDE_SMALL*2 ){
|
||||
nBig = szAlloc/(LOOKASIDE_SMALL+sz);
|
||||
- nSm = (szAlloc - sz*nBig)/LOOKASIDE_SMALL;
|
||||
+ nSm = (szAlloc - (long) sz*nBig)/LOOKASIDE_SMALL;
|
||||
}else
|
||||
#endif /* SQLITE_OMIT_TWOSIZE_LOOKASIDE */
|
||||
if( sz>0 ){
|
||||
@ -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 @@
|
||||
@@ -26320,7 +26320,7 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// ctype.h
|
||||
-extern int toupper (int __c) __THROW;
|
||||
+extern int toupper (int __c);
|
||||
+//extern int toupper (int __c) __THROW;
|
||||
|
||||
// SHA256_crypt
|
||||
char * sha256_crypt_r (const char *key, const char *salt, char *buffer, int buflen);
|
||||
|
||||
Loading…
Reference in new issue