On 6/3/19 2:22 PM, Frediano Ziglio wrote:
The formula is here to make sure glyph is aligned to 4 bytes so tell to the compiler to avoid a warning.
What's the warning ? Is it that the pointer may be unaligned (which is imposible if you start from an aligned address) ? Looks complicated to me, especially since after the SPICE_ALIGNED_CAST there is another (the "real") cast. On the other hand it doesn't break anything.
Signed-off-by: Frediano Ziglio <[email protected]>
Ack.
--- server/red-parse-qxl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/red-parse-qxl.c b/server/red-parse-qxl.c index afae94316..89b61c06f 100644 --- a/server/red-parse-qxl.c +++ b/server/red-parse-qxl.c @@ -941,9 +941,9 @@ static SpiceString *red_get_string(RedMemSlotInfo *slots, int group_id, spice_assert(glyph_size <= (char*) end - (char*) &start->data[0]); memcpy(glyph->data, start->data, glyph_size); start = (QXLRasterGlyph*)(&start->data[glyph_size]); - glyph = (SpiceRasterGlyph*) + glyph = (SpiceRasterGlyph*) SPICE_ALIGNED_CAST(uint32_t*, (((uint8_t *)glyph) + - SPICE_ALIGN(sizeof(SpiceRasterGlyph) + glyph_size, 4)); + SPICE_ALIGN(sizeof(SpiceRasterGlyph) + glyph_size, 4))); }if (free_data) {
_______________________________________________ Spice-devel mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/spice-devel
