mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-12 22:40:46 -08:00
(make_frame_glyphs): Zero the correct number of bytes.
This commit is contained in:
parent
fe03654a86
commit
aba5d0f41c
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue