This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: printing 0xbeef wchar_t on x86-windows...


> FWIW the appended builds and regtests ok; but really it needs testing in
> your environment.

Already done :-). But JIC, I applied your patch, and tested it again,
and same (good) results.

Would you like me to commit it for you?

Thanks, Tom.

> diff --git a/gdb/valprint.c b/gdb/valprint.c
> index 6e651f6..583329d 100644
> --- a/gdb/valprint.c
> +++ b/gdb/valprint.c
> @@ -2037,7 +2037,7 @@ generic_emit_char (int c, struct type *type, struct ui_file *stream,
>    convert_between_encodings (INTERMEDIATE_ENCODING, host_charset (),
>  			     obstack_base (&wchar_buf),
>  			     obstack_object_size (&wchar_buf),
> -			     1, &output, translit_char);
> +			     sizeof (gdb_wchar_t), &output, translit_char);
>    obstack_1grow (&output, '\0');
>  
>    fputs_filtered (obstack_base (&output), stream);
> @@ -2278,7 +2278,7 @@ generic_printstr (struct ui_file *stream, struct type *type,
>    convert_between_encodings (INTERMEDIATE_ENCODING, host_charset (),
>  			     obstack_base (&wchar_buf),
>  			     obstack_object_size (&wchar_buf),
> -			     1, &output, translit_char);
> +			     sizeof (gdb_wchar_t), &output, translit_char);
>    obstack_1grow (&output, '\0');
>  
>    fputs_filtered (obstack_base (&output), stream);

-- 
Joel


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]