From: Richard M. Stallman Date: Thu, 28 Mar 1996 18:23:18 +0000 (+0000) Subject: (make_frame_glyphs): Zero the correct number of bytes. X-Git-Tag: emacs-19.34~957 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aba5d0f41c7550d601fa01cb22ed54860081bb02;p=emacs.git (make_frame_glyphs): Zero the correct number of bytes. --- 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 {