From a6e3210db7ee98f70ce97bf7fae59ee1ab011fb6 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Mon, 14 Feb 2011 11:26:42 +0000 Subject: gdb/ * c-valprint.c (c_val_print): Print a string with unavailable contents as an array. --- gdb/c-valprint.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gdb/c-valprint.c') diff --git a/gdb/c-valprint.c b/gdb/c-valprint.c index baad597cf02..138aca6d970 100644 --- a/gdb/c-valprint.c +++ b/gdb/c-valprint.c @@ -187,6 +187,8 @@ c_val_print (struct type *type, const gdb_byte *valaddr, long as the entire array is valid. */ if (c_textual_element_type (unresolved_elttype, options->format) + && value_bytes_available (original_value, embedded_offset, + TYPE_LENGTH (type)) && value_bits_valid (original_value, TARGET_CHAR_BIT * embedded_offset, TARGET_CHAR_BIT * TYPE_LENGTH (type))) -- cgit v1.2.1