summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-03-28 18:23:18 +0000
committerRichard M. Stallman <rms@gnu.org>1996-03-28 18:23:18 +0000
commit12ba8bcfcb0a063636335f6e130ab7fc8c4e2bd4 (patch)
tree0bf50d5b459c2df87f8e8a704211a5f2bf06eefb
parent851c1d5643d130bab7e291e611082e11f2650fbb (diff)
downloademacs-12ba8bcfcb0a063636335f6e130ab7fc8c4e2bd4.tar.gz
(make_frame_glyphs): Zero the correct number of bytes.
-rw-r--r--src/dispnew.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index 37749001d3f..c9a94cf37ed 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -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
{