Mercurial > emacs
changeset 14903:13c3adcb1c13
(make_frame_glyphs): Zero the correct number of bytes.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 28 Mar 1996 18:23:18 +0000 |
parents | 6dc4dee167eb |
children | 5025ab10c28c |
files | src/dispnew.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 {