From: Jon Turney Date: Sat, 21 May 2022 10:11:12 +0000 (+0100) Subject: Fix Cygwin build after 85b25bd9 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a115c6d62e9f367dcf319a349ce452ec6518b667;p=binutils-gdb.git Fix Cygwin build after 85b25bd9 Fix Cygwin build after 85b25bd9 ("Simplify windows-nat.c solib handling"). --- diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index ab0efe72d8f..b98848bbc70 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -654,8 +654,8 @@ static std::vector solibs; static windows_solib * windows_make_so (const char *name, LPVOID load_addr) { - char *p; #ifndef __CYGWIN__ + char *p; char buf[__PMAX]; char cwd[__PMAX]; WIN32_FIND_DATA w32_fd; @@ -738,7 +738,7 @@ windows_make_so (const char *name, LPVOID load_addr) { asection *text = NULL; - gdb_bfd_ref_ptr abfd (gdb_bfd_open (so->name, "pei-i386")); + gdb_bfd_ref_ptr abfd (gdb_bfd_open (so->name.c_str(), "pei-i386")); if (abfd == NULL) return so;