1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-12 22:40:46 -08:00

(make_frame_glyphs): Zero the correct number of bytes.

This commit is contained in:
Richard M. Stallman 1996-03-28 18:23:18 +00:00
parent fe03654a86
commit aba5d0f41c

View file

@ -299,7 +299,7 @@ make_frame_glyphs (frame, empty)
bzero (new->total_contents, total_glyphs);
new->total_charstarts = (int *) xmalloc (total_charstarts);
bzero (new->total_charstarts, total_glyphs);
bzero (new->total_charstarts, total_charstarts);
}
else
{