From 202ddcaa09cec13dd964695fb033a6cd6c7a6543 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Fri, 31 Aug 2007 19:01:17 +0000 Subject: [PATCH] * varobj.c (struct varobj): Fix comment for the type member not to lie when it can be NULL. --- gdb/ChangeLog | 6 ++++++ gdb/varobj.c | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 242822fdb5..7732b944eb 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2007-08-31 Vladimir Prus + + * varobj.c (struct varobj): Fix comment + for the type member not to lie when it can be + NULL. + 2007-08-31 Vladimir Prus Implement -var-info-path-expression. diff --git a/gdb/varobj.c b/gdb/varobj.c index 7235de31f1..5ea81fa3ef 100644 --- a/gdb/varobj.c +++ b/gdb/varobj.c @@ -110,7 +110,9 @@ struct varobj /* Index of this variable in its parent or -1 */ int index; - /* The type of this variable. This may NEVER be NULL. */ + /* The type of this variable. This can be NULL + for artifial variable objects -- currently, the "accessibility" + variable objects in C++. */ struct type *type; /* The value of this expression or subexpression. A NULL value -- 2.34.1