diff options
| author | Richard M. Stallman | 1996-03-28 18:23:18 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-03-28 18:23:18 +0000 |
| commit | aba5d0f41c7550d601fa01cb22ed54860081bb02 (patch) | |
| tree | f9953e1ac66d0c24409c4a4a5157ae5ff973aeb5 | |
| parent | fe03654a86967903859284dd5b996d9abaf15b72 (diff) | |
| download | emacs-aba5d0f41c7550d601fa01cb22ed54860081bb02.tar.gz emacs-aba5d0f41c7550d601fa01cb22ed54860081bb02.zip | |
(make_frame_glyphs): Zero the correct number of bytes.
| -rw-r--r-- | src/dispnew.c | 2 |
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) | |||
| 299 | bzero (new->total_contents, total_glyphs); | 299 | bzero (new->total_contents, total_glyphs); |
| 300 | 300 | ||
| 301 | new->total_charstarts = (int *) xmalloc (total_charstarts); | 301 | new->total_charstarts = (int *) xmalloc (total_charstarts); |
| 302 | bzero (new->total_charstarts, total_glyphs); | 302 | bzero (new->total_charstarts, total_charstarts); |
| 303 | } | 303 | } |
| 304 | else | 304 | else |
| 305 | { | 305 | { |