mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 01:05:48 +01:00 
			
		
		
		
	Fix off-by-one in log output line length (#6896)
This commit is contained in:
		@@ -347,13 +347,10 @@ void StringBuffer::push_back(char c)
 | 
			
		||||
			flush(std::string(buffer, buffer_index));
 | 
			
		||||
		buffer_index = 0;
 | 
			
		||||
	} else {
 | 
			
		||||
		int index = buffer_index;
 | 
			
		||||
		buffer[index++] = c;
 | 
			
		||||
		if (index >= BUFFER_LENGTH) {
 | 
			
		||||
		buffer[buffer_index++] = c;
 | 
			
		||||
		if (buffer_index >= BUFFER_LENGTH) {
 | 
			
		||||
			flush(std::string(buffer, buffer_index));
 | 
			
		||||
			buffer_index = 0;
 | 
			
		||||
		} else {
 | 
			
		||||
			buffer_index = index;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user