* win32-nat.c (handle_load_dll): Avoid strlwr'ing loaded DLLs or cygwin may not
authorChristopher Faylor <me+cygwin@cgf.cx>
Sat, 20 Oct 2001 05:11:41 +0000 (05:11 +0000)
committerChristopher Faylor <me+cygwin@cgf.cx>
Sat, 20 Oct 2001 05:11:41 +0000 (05:11 +0000)
be able to read them in certain situations.

gdb/ChangeLog
gdb/valprint.c
gdb/win32-nat.c
gdb/windows-nat.c

index c7e907265fe98cfca5f73661264cb0b2b7aad0f1..745438fbebe28e183adf5ec3a39156d6c05c0570 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-20  Christopher Faylor  <cgf@redhat.com>
+
+       * win32-nat.c (handle_load_dll): Avoid strlwr'ing loaded DLLs or cygwin
+       may not be able to read them in certain situations.
+
 2001-10-18  Andrew Cagney  <ac131313@redhat.com>
 
        * config/powerpc/nbsd.mt (SIM_OBS, SIM): Define.
index 3feb91564d0ac8ad58b08645c36ec8d0f2ae15fc..5af31ead82c04da503b9daef962df5d106ba6758 100644 (file)
@@ -1149,6 +1149,7 @@ val_print_string (CORE_ADDR addr, int len, int width, struct ui_file *stream)
   found_nul = 0;
   old_chain = make_cleanup (null_cleanup, 0);
 
+  bufptr = NULL;
   if (len > 0)
     {
       buffer = (char *) xmalloc (len * width);
index 7f5310e1fd3c6c3cd2b59638bc611ff8bd3168df..fab5d03c6d11f761c61b5376ecf57a88585f3ef1 100644 (file)
@@ -600,8 +600,6 @@ handle_load_dll (void *dummy ATTRIBUTE_UNUSED)
   if (!dll_name)
     return 1;
 
-  (void) strlwr (dll_name);
-
   while ((p = strchr (dll_name, '\\')))
     *p = '/';
 
index 7f5310e1fd3c6c3cd2b59638bc611ff8bd3168df..fab5d03c6d11f761c61b5376ecf57a88585f3ef1 100644 (file)
@@ -600,8 +600,6 @@ handle_load_dll (void *dummy ATTRIBUTE_UNUSED)
   if (!dll_name)
     return 1;
 
-  (void) strlwr (dll_name);
-
   while ((p = strchr (dll_name, '\\')))
     *p = '/';