Fix Cygwin build after 85b25bd9

Fix Cygwin build after 85b25bd9 ("Simplify windows-nat.c solib handling").
This commit is contained in:
Jon Turney
2022-05-21 11:11:12 +01:00
parent 1f03fa9921
commit a115c6d62e

View File

@ -654,8 +654,8 @@ static std::vector<windows_solib> 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;