gdb: initialize interp::next This field is never initialized, it seems to me like it would be a good idea to initialize it to nullptr to avoid bad surprises. Change-Id: I8c04319d564f5d385d8bf0acee758f6ce28b4447 Reviewed-By: Tom Tromey <tom@tromey.com>
diff --git a/gdb/interps.h b/gdb/interps.h index 62f3795..2924809 100644 --- a/gdb/interps.h +++ b/gdb/interps.h
@@ -87,7 +87,7 @@ class interp public: /* Interpreters are stored in a linked list, this is the next one... */ - struct interp *next; + interp *next = nullptr; /* Has the init method been run? */ bool inited = false;