forked from Imagelibrary/binutils-gdb
2007-08-14 Michael Snyder <msnyder@access-company.com>
* ada-lang.c (possible_user_operator_p): Guard against NULL.
This commit is contained in:
@@ -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))));
|
||||||
|
|||||||
Reference in New Issue
Block a user