This is the mail archive of the gdb-prs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug gdb/15438] New: dangling cleanup in keep_going


http://sourceware.org/bugzilla/show_bug.cgi?id=15438

             Bug #: 15438
           Summary: dangling cleanup in keep_going
           Product: gdb
           Version: HEAD
            Status: NEW
          Severity: normal
          Priority: P2
         Component: gdb
        AssignedTo: unassigned@sourceware.org
        ReportedBy: tromey@redhat.com
    Classification: Unclassified


infrun.c:keep_going has one return that does not deal with cleanups:

      if (e.reason < 0)
        {
          exception_print (gdb_stderr, e);
          stop_stepping (ecs);
          return;
        }

It isn't clear to me whether this should do_cleanups or discard_cleanups.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]