Re: [PATCH v2 05/20] EDAC, mc: Remove needless zero string termination

From: Mauro Carvalho Chehab
Date: Sat Nov 09 2019 - 02:28:16 EST


Em Wed, 6 Nov 2019 09:33:11 +0000
Robert Richter <rrichter@xxxxxxxxxxx> escreveu:

> Since this is a string already and strlen() has been used to advance
> the pointer, the end of the buffer is already zero terminated. Remove
> the needless zero string termination.
>
> Suggested-by: Joe Perches <joe@xxxxxxxxxxx>
> Signed-off-by: Robert Richter <rrichter@xxxxxxxxxxx>

Reviewed-by: Mauro Carvalho Chehab <mchehab@xxxxxxxxxx>
> ---
> drivers/edac/edac_mc.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/edac/edac_mc.c b/drivers/edac/edac_mc.c
> index f2cbca77bc50..8bfe76d1bdf1 100644
> --- a/drivers/edac/edac_mc.c
> +++ b/drivers/edac/edac_mc.c
> @@ -1183,7 +1183,6 @@ void edac_mc_handle_error(const enum hw_event_mc_err_type type,
> }
> strcpy(p, dimm->label);
> p += strlen(p);
> - *p = '\0';
>
> /*
> * get csrow/channel of the DIMM, in order to allow




Cheers,
Mauro