From be2849ce9ae551ee50c245d50af887df5182cf63 Mon Sep 17 00:00:00 2001 From: "Jonathan M. Henson" Date: Thu, 5 Oct 2023 15:24:10 -0700 Subject: [PATCH] Do not overwirte yourself this time. --- source/linux/system_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/linux/system_info.c b/source/linux/system_info.c index 211e93f35..6879bff43 100644 --- a/source/linux/system_info.c +++ b/source/linux/system_info.c @@ -17,5 +17,5 @@ void aws_system_environment_load_virtualization_vendor_impl(struct aws_system_en } void aws_system_environment_load_virtualization_product_name_impl(struct aws_system_environment *env) { - aws_byte_buf_init_from_file(&env->virtualization_vendor, env->allocator, "/sys/devices/virtual/dmi/id/product_name"); + aws_byte_buf_init_from_file(&env->product_name, env->allocator, "/sys/devices/virtual/dmi/id/product_name"); }