This is the mail archive of the archer@sourceware.org mailing list for the Archer 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]

Re: [inferior events] minor patch from trunk


On 12/14/2010 04:37 PM, Tom Tromey wrote:
This fix comes from the trunk.

Without this we will crash when calling gdb.selected_thread before any
threads exist.

Ok to push?


Yes.


Tom

@@ -206,6 +294,9 @@ find_thread_object (ptid_t ptid)
    PyObject *inf_obj;

    pid = PIDGET (ptid);
+  if (pid == 0)
+    return NULL;
+
    inf_obj = find_inferior_object (pid);

if (inf_obj)


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