Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ffdbb715 authored by Lee Jones's avatar Lee Jones Committed by Greg Kroah-Hartman
Browse files

misc: st_kim: Increase size of dev_name buffer to incorporate termination



Calling strncpy with a maximum size argument of 32 bytes on destination
array kim_gdata->dev_name of size 32 bytes might leave the destination
string unterminated.

Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e4ebe5fe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -268,7 +268,7 @@ struct kim_data_s {
	struct st_data_s *core_data;
	struct chip_version version;
	unsigned char ldisc_install;
	unsigned char dev_name[UART_DEV_NAME_LEN];
	unsigned char dev_name[UART_DEV_NAME_LEN + 1];
	unsigned char flow_cntrl;
	unsigned long baud_rate;
};