]> git.eshelyaron.com Git - emacs.git/commitdiff
(make_frame_glyphs): Zero the correct number of bytes.
authorRichard M. Stallman <rms@gnu.org>
Thu, 28 Mar 1996 18:23:18 +0000 (18:23 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 28 Mar 1996 18:23:18 +0000 (18:23 +0000)
src/dispnew.c

index 37749001d3f6859ec4e4c6e46f586347c1e2633f..c9a94cf37ed988b22cd7d50d58807ecf71466cc1 100644 (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
     {