2007-08-14 Michael Snyder <msnyder@access-company.com>
* ada-lang.c (possible_user_operator_p): Guard against NULL.
This commit is contained in:
parent
348144bad4
commit
6d307763fb
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
||||||
2007-08-14 Michael Snyder <msnyder@access-company.com>
|
2007-08-14 Michael Snyder <msnyder@access-company.com>
|
||||||
|
|
||||||
|
* ada-lang.c (possible_user_operator_p): Guard against NULL.
|
||||||
|
|
||||||
* varobj.c (cplus_describe_child): Guard against null.
|
* varobj.c (cplus_describe_child): Guard against null.
|
||||||
Use "NULL" instead of "0" to initialize pointers.
|
Use "NULL" instead of "0" to initialize pointers.
|
||||||
|
|
||||||
|
|
|
@ -3536,7 +3536,7 @@ possible_user_operator_p (enum exp_opcode op, struct value *args[])
|
||||||
((TYPE_CODE (type0) != TYPE_CODE_ARRAY
|
((TYPE_CODE (type0) != TYPE_CODE_ARRAY
|
||||||
&& (TYPE_CODE (type0) != TYPE_CODE_PTR
|
&& (TYPE_CODE (type0) != TYPE_CODE_PTR
|
||||||
|| TYPE_CODE (TYPE_TARGET_TYPE (type0)) != TYPE_CODE_ARRAY))
|
|| TYPE_CODE (TYPE_TARGET_TYPE (type0)) != TYPE_CODE_ARRAY))
|
||||||
|| (TYPE_CODE (type1) != TYPE_CODE_ARRAY
|
|| (type1 != NULL && TYPE_CODE (type1) != TYPE_CODE_ARRAY
|
||||||
&& (TYPE_CODE (type1) != TYPE_CODE_PTR
|
&& (TYPE_CODE (type1) != TYPE_CODE_PTR
|
||||||
|| (TYPE_CODE (TYPE_TARGET_TYPE (type1))
|
|| (TYPE_CODE (TYPE_TARGET_TYPE (type1))
|
||||||
!= TYPE_CODE_ARRAY))));
|
!= TYPE_CODE_ARRAY))));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue