# HG changeset patch # User Richard M. Stallman # Date 828037398 0 # Node ID 13c3adcb1c137645285813f56cbfda85e5b6b099 # Parent 6dc4dee167eb223812359164ac52b0a6be3b595b (make_frame_glyphs): Zero the correct number of bytes. diff -r 6dc4dee167eb -r 13c3adcb1c13 src/dispnew.c --- a/src/dispnew.c Thu Mar 28 18:16:43 1996 +0000 +++ b/src/dispnew.c Thu Mar 28 18:23:18 1996 +0000 @@ -299,7 +299,7 @@ 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 {