* win32-nat.c (register_loaded_dll): Correctly check for invalid handle value.
authorChristopher Faylor <me+cygwin@cgf.cx>
Thu, 21 Feb 2002 06:44:05 +0000 (06:44 +0000)
committerChristopher Faylor <me+cygwin@cgf.cx>
Thu, 21 Feb 2002 06:44:05 +0000 (06:44 +0000)
gdb/ChangeLog
gdb/win32-nat.c
gdb/windows-nat.c

index e6cb3a0..551ccbd 100644 (file)
@@ -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
index 871620f..cd288be 100644 (file)
@@ -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);
index 871620f..cd288be 100644 (file)
@@ -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);