Fix -Wno-sometimes-uninitialized by initializing "result" in parse_sax
The function parse_sax() returns sometimes-uninitialized warnings in some compilers. This commit fixes that.
This commit is contained in:
		
							parent
							
								
									e33b31e6aa
								
							
						
					
					
						commit
						3004a73951
					
				
					 2 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -64,7 +64,7 @@ class binary_reader
 | 
			
		|||
                   const bool strict = true)
 | 
			
		||||
    {
 | 
			
		||||
        sax = sax_;
 | 
			
		||||
        bool result;
 | 
			
		||||
        bool result = false;
 | 
			
		||||
 | 
			
		||||
        switch (format)
 | 
			
		||||
        {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue