From af2202ca8081579683c9622965b4997f16e43e75 Mon Sep 17 00:00:00 2001 From: Hikaru Kurosaki Date: Mon, 23 May 2022 22:35:25 +0900 Subject: [PATCH] v4.4.3: Avoid bug that crash on Windows (provisional) --- common/discover.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/discover.c b/common/discover.c index ee34cb8..26d2ac2 100644 --- a/common/discover.c +++ b/common/discover.c @@ -592,6 +592,10 @@ discover_interfaces(int state) { static int setup_fallback = 0; +#if defined(DHCP_WINDOWS) + setup_fallback = 1; //*** Avoid bug that crash on Windows (provisional) +#endif + if (!begin_iface_scan(&ifaces)) { log_fatal("Can't get list of interfaces."); }