mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-15 11:41:13 +03:00
Fix some pointless warnings from overly-pedantic compilers. (CVS 3048)
FossilOrigin-Name: b922c8e45f9a7799583d8b42875b27032fd71422
This commit is contained in:
@@ -1479,7 +1479,7 @@ int sqlite3_tsd_count = 0;
|
||||
ThreadData *sqlite3WinThreadSpecificData(int allocateFlag){
|
||||
static int key;
|
||||
static int keyInit = 0;
|
||||
static const ThreadData zeroData;
|
||||
static const ThreadData zeroData = {0};
|
||||
ThreadData *pTsd;
|
||||
|
||||
if( !keyInit ){
|
||||
|
||||
Reference in New Issue
Block a user