From: Andreas Schwab Date: Mon, 29 Nov 2021 09:29:40 +0000 (+0100) Subject: Avoid undefined behaviour when copying part of structure X-Git-Tag: emacs-29.0.90~3649^2~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6943786b5c1fe76ea05a3a810512bd6777883710;p=emacs.git Avoid undefined behaviour when copying part of structure * src/dispnew.c (copy_row_except_pointers): Don't use address of subobject as starting point. --- diff --git a/src/dispnew.c b/src/dispnew.c index f3f110a8f27..a976bf94c5e 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -1034,7 +1034,7 @@ copy_row_except_pointers (struct glyph_row *to, struct glyph_row *from) { enum { off = offsetof (struct glyph_row, x) }; - memcpy (&to->x, &from->x, sizeof *to - off); + memcpy ((char *) to + off, (char *) from + off, sizeof *to - off); }