mirror of
				https://github.com/sqlite/sqlite.git
				synced 2025-11-03 16:53:36 +03:00 
			
		
		
		
	When masking bits off of sqlite3.flags, make sure the mask is 64 bits
in size so as not to accidentally mask of high-order bits. FossilOrigin-Name: 53d3b169d8e1892163526caff2c843302c92e280fdeff6831e23a9bb15b82be3
This commit is contained in:
		@@ -2855,7 +2855,7 @@ int sqlite3VdbeHalt(Vdbe *p){
 | 
			
		||||
        }else{
 | 
			
		||||
          db->nDeferredCons = 0;
 | 
			
		||||
          db->nDeferredImmCons = 0;
 | 
			
		||||
          db->flags &= ~SQLITE_DeferFKs;
 | 
			
		||||
          db->flags &= ~(u64)SQLITE_DeferFKs;
 | 
			
		||||
          sqlite3CommitInternalChanges(db);
 | 
			
		||||
        }
 | 
			
		||||
      }else{
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user