From becceeb8890ff05ff8821a75c4f20d692e76bf74 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Thu, 17 Mar 2022 12:17:40 -0700 Subject: [PATCH] ETHER: Assure there's enough space to fetch the system GUID on Windows --- sim_ether.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim_ether.c b/sim_ether.c index 041b7e1f..83ebe664 100644 --- a/sim_ether.c +++ b/sim_ether.c @@ -407,7 +407,7 @@ t_stat eth_mac_scan_ex (ETH_MAC* mac, const char* strmac, UNIT *uptr) ETH_MAC newmac; struct { uint32 bits; - char system_id[37]; + char system_id[64]; char cwd[PATH_MAX]; char file[PATH_MAX]; ETH_MAC base_mac;