ada-lang.c: malloc/alloca casts for C++

gdb/ChangeLog:
2015-10-13  Pedro Alves  <palves@redhat.com>

	* ada-lang.c (ada_value_primitive_packed_val): Add casts to malloc
	and alloca calls.
This commit is contained in:
Pedro Alves 2015-10-13 19:40:50 +01:00
parent 4666fec3b4
commit aa5c10ce9b
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2015-10-13 Pedro Alves <palves@redhat.com>
* ada-lang.c (ada_value_primitive_packed_val): Add casts to malloc
and alloca calls.
2015-10-13 Simon Marchi <simon.marchi@polymtl.ca>
* lm32-tdep.c (lm32_push_dummy_call): Replace call to

View File

@ -2550,7 +2550,7 @@ ada_value_primitive_packed_val (struct value *obj, const gdb_byte *valaddr,
we do, is unpack the data into a byte-aligned buffer, and then
use that buffer as our object's value for resolving the type. */
staging_len = (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
staging = malloc (staging_len);
staging = (gdb_byte *) malloc (staging_len);
make_cleanup (xfree, staging);
ada_unpack_from_contents (src, bit_offset, bit_size,
@ -2581,7 +2581,7 @@ ada_value_primitive_packed_val (struct value *obj, const gdb_byte *valaddr,
int src_len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8;
v = value_at (type, value_address (obj) + offset);
src = alloca (src_len);
src = (gdb_byte *) alloca (src_len);
read_memory (value_address (v), src, src_len);
}
else