On Mon, Apr 04, 2022 at 07:04:56PM +0200, mwilck@xxxxxxxx wrote: > Potential overflow found by coverity (CID 376918). Reviewed-by: Benjamin Marzinski <bmarzins@xxxxxxxxxx> > --- > libmultipath/callout.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libmultipath/callout.c b/libmultipath/callout.c > index dac088c..57c3481 100644 > --- a/libmultipath/callout.c > +++ b/libmultipath/callout.c > @@ -160,7 +160,7 @@ int apply_format(char * string, char * cmd, struct path * pp) > myfree = CALLOUT_MAX_SIZE; > > if (!pos) { > - strcpy(dst, string); > + strlcpy(dst, string, CALLOUT_MAX_SIZE); > return 0; > } > > -- > 2.35.1 -- dm-devel mailing list dm-devel@xxxxxxxxxx https://listman.redhat.com/mailman/listinfo/dm-devel