* symtab.c (lookup_symtab): Run cleanup before returning.
authorThiago Jung Bauermann <bauerman@br.ibm.com>
Wed, 11 May 2011 18:29:01 +0000 (18:29 +0000)
committerThiago Jung Bauermann <bauerman@br.ibm.com>
Wed, 11 May 2011 18:29:01 +0000 (18:29 +0000)
gdb/ChangeLog
gdb/symtab.c

index 2ee0b31e3d65f2282ee91e17794a7f71cb3d4bdc..ef7a45f3439136edf2a520feb73b6f4abf34d38b 100644 (file)
@@ -1,3 +1,7 @@
+2011-05-11  Thiago Jung Bauermann  <bauerman@br.ibm.com>
+
+       * symtab.c (lookup_symtab): Run cleanup before returning.
+
 2011-05-11  Tom Tromey  <tromey@redhat.com>
 
        * dwarf2read.c (handle_data_member_location): New function.
index 84e01a660cdbcb0ba5b815345f529be15fc48ba6..439bb780a03ed18c37b6ecae9f8d097e3ed7cbf5 100644 (file)
@@ -158,6 +158,9 @@ lookup_symtab (const char *name)
   struct objfile *objfile;
   char *real_path = NULL;
   char *full_path = NULL;
+  struct cleanup *cleanup;
+
+  cleanup = make_cleanup (null_cleanup, NULL);
 
   /* Here we are interested in canonicalizing an absolute path, not
      absolutizing a relative path.  */
@@ -177,6 +180,7 @@ got_symtab:
   {
     if (FILENAME_CMP (name, s->filename) == 0)
       {
+       do_cleanups (cleanup);
        return s;
       }
 
@@ -189,6 +193,7 @@ got_symtab:
 
         if (fp != NULL && FILENAME_CMP (full_path, fp) == 0)
           {
+           do_cleanups (cleanup);
             return s;
           }
       }
@@ -204,6 +209,7 @@ got_symtab:
             make_cleanup (xfree, rp);
             if (FILENAME_CMP (real_path, rp) == 0)
               {
+               do_cleanups (cleanup);
                 return s;
               }
           }
@@ -216,7 +222,10 @@ got_symtab:
     ALL_SYMTABS (objfile, s)
     {
       if (FILENAME_CMP (lbasename (s->filename), name) == 0)
-       return s;
+       {
+         do_cleanups (cleanup);
+         return s;
+       }
     }
 
   /* Same search rules as above apply here, but now we look thru the
@@ -235,9 +244,15 @@ got_symtab:
   }
 
   if (s != NULL)
-    return s;
+    {
+      do_cleanups (cleanup);
+      return s;
+    }
   if (!found)
-    return NULL;
+    {
+      do_cleanups (cleanup);
+      return NULL;
+    }
 
   /* At this point, we have located the psymtab for this file, but
      the conversion to a symtab has failed.  This usually happens
This page took 0.047786 seconds and 4 git commands to generate.