Always initialize `p'.
authorAndrew Cagney <cagney@redhat.com>
Mon, 30 Apr 2001 17:09:19 +0000 (17:09 +0000)
committerAndrew Cagney <cagney@redhat.com>
Mon, 30 Apr 2001 17:09:19 +0000 (17:09 +0000)
gdb/ChangeLog
gdb/gdbtypes.c

index d27139270301d7b21205028e8d71821007cc8840..43ac242ce668d197b957411d3e877708db981845 100644 (file)
@@ -1,3 +1,7 @@
+2001-04-27  Andrew Cagney  <ac131313@redhat.com>
+
+       * gdbtypes.c (check_stub_method): Always initialize ``p''.
+
 2001-04-27  Andrew Cagney  <ac131313@redhat.com>
 
        * configure.host: Delete romp host.
index f3cff63501f3404c3c4d5f0a06a332f3c8b57146..ee191cdd0bb239e47ff7e548028d8ddd711efd1f 100644 (file)
@@ -1410,6 +1410,8 @@ check_stub_method (struct type *type, int method_id, int signature_id)
   /* Make sure we got back a function string that we can use.  */
   if (demangled_name)
     p = strchr (demangled_name, '(');
+  else
+    p = NULL;
 
   if (demangled_name == NULL || p == NULL)
     error ("Internal: Cannot demangle mangled name `%s'.", mangled_name);