mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-02 01:45:17 +00:00
virProcessRunInForkHelper: Use virStrcpyStatic for static buffers
Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
f6280b0397
commit
3442d8da3b
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user