From: Peter Krempa Date: Tue, 2 Mar 2021 10:14:54 +0000 (+0100) Subject: virProcessRunInForkHelper: Use virStrcpyStatic for static buffers X-Git-Tag: v7.2.0-rc1~234 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3442d8da3b4fcc82a4916a518d82fb9cab0543e8;p=thirdparty%2Flibvirt.git virProcessRunInForkHelper: Use virStrcpyStatic for static buffers Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko --- diff --git a/src/util/virprocess.c b/src/util/virprocess.c index 69d64e9466..7a0960e337 100644 --- a/src/util/virprocess.c +++ b/src/util/virprocess.c @@ -1168,14 +1168,14 @@ virProcessRunInForkHelper(int errfd, bin->data.code = err->code; bin->data.domain = err->domain; - ignore_value(virStrcpy(bin->data.message, err->message, sizeof(bin->data.message))); + virStrcpyStatic(bin->data.message, err->message); bin->data.level = err->level; if (err->str1) - ignore_value(virStrcpy(bin->data.str1, err->str1, sizeof(bin->data.str1))); + virStrcpyStatic(bin->data.str1, err->str1); if (err->str2) - ignore_value(virStrcpy(bin->data.str2, err->str2, sizeof(bin->data.str2))); + virStrcpyStatic(bin->data.str2, err->str2); if (err->str3) - ignore_value(virStrcpy(bin->data.str3, err->str3, sizeof(bin->data.str3))); + virStrcpyStatic(bin->data.str3, err->str3); bin->data.int1 = err->int1; bin->data.int2 = err->int2;