OSDN Git Service

* hppa-tdep.c (hppa_frame_cache): Avoid undefined return value.
authorbrobecke <brobecke>
Fri, 5 Mar 2004 04:49:52 +0000 (04:49 +0000)
committerbrobecke <brobecke>
Fri, 5 Mar 2004 04:49:52 +0000 (04:49 +0000)
gdb/ChangeLog
gdb/hppa-tdep.c

index 884cf2c..8237ba3 100644 (file)
@@ -1,3 +1,7 @@
+2004-03-04  J. Brobecker  <brobecker@gnat.com>
+
+       * hppa-tdep.c (hppa_frame_cache): Avoid undefined return value.
+
 2004-03-04  Daniel Jacobowitz  <drow@mvista.com>
 
        * dwarf2read.c: Add comment describing memory lifetimes.
index ccbdcba..549a811 100644 (file)
@@ -4617,7 +4617,7 @@ hppa_frame_cache (struct frame_info *next_frame, void **this_cache)
   /* Yow! */
   u = find_unwind_entry (frame_func_unwind (next_frame));
   if (!u)
-    return;
+    return (*this_cache);
 
   /* Turn the Entry_GR field into a bitmask.  */
   saved_gr_mask = 0;