mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 02:24:46 +08:00
* win32-nat.c (register_loaded_dll): Correctly check for invalid handle value.
This commit is contained in:
parent
c914e0cc47
commit
097f6b0bba
@ -1,3 +1,8 @@
|
||||
2002-02-21 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* win32-nat.c (register_loaded_dll): Correctly check for invalid handle
|
||||
value.
|
||||
|
||||
2002-02-20 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
|
||||
|
@ -582,7 +582,7 @@ register_loaded_dll (const char *name, DWORD load_addr)
|
||||
HANDLE h = FindFirstFile(name, &w32_fd);
|
||||
size_t len;
|
||||
|
||||
if (h)
|
||||
if (h != INVALID_HANDLE_VALUE)
|
||||
{
|
||||
FindClose (h);
|
||||
strcpy (buf, name);
|
||||
|
@ -582,7 +582,7 @@ register_loaded_dll (const char *name, DWORD load_addr)
|
||||
HANDLE h = FindFirstFile(name, &w32_fd);
|
||||
size_t len;
|
||||
|
||||
if (h)
|
||||
if (h != INVALID_HANDLE_VALUE)
|
||||
{
|
||||
FindClose (h);
|
||||
strcpy (buf, name);
|
||||
|
Loading…
Reference in New Issue
Block a user