mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	[modbus-text-sensor] fix potential buffer overflow (#6993)
This commit is contained in:
		
				
					committed by
					
						 Jesse Hills
						Jesse Hills
					
				
			
			
				
	
			
			
			
						parent
						
							c747d7d45d
						
					
				
				
					commit
					9c2af6318c
				
			| @@ -15,7 +15,7 @@ void ModbusTextSensor::parse_and_publish(const std::vector<uint8_t> &data) { | ||||
|   std::ostringstream output; | ||||
|   uint8_t items_left = this->response_bytes; | ||||
|   uint8_t index = this->offset; | ||||
|   char buffer[4]; | ||||
|   char buffer[5]; | ||||
|   while ((items_left > 0) && index < data.size()) { | ||||
|     uint8_t b = data[index]; | ||||
|     switch (this->encode_) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user