projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1a51c6
)
Fix uninitialized variable bug that, strangely, only caused occasional
author
Chris Hanson
<org/chris-hanson/cph>
Mon, 1 May 2000 02:57:14 +0000
(
02:57
+0000)
committer
Chris Hanson
<org/chris-hanson/cph>
Mon, 1 May 2000 02:57:14 +0000
(
02:57
+0000)
problems.
v7/src/microcode/ntscreen.c
patch
|
blob
|
history
diff --git
a/v7/src/microcode/ntscreen.c
b/v7/src/microcode/ntscreen.c
index fbcc61de4925f297d814e2dec5eb4ffad2d097a6..75a97007f86cc9170b0cd4dc09068a77af666f76 100644
(file)
--- a/
v7/src/microcode/ntscreen.c
+++ b/
v7/src/microcode/ntscreen.c
@@
-1,6
+1,6
@@
/* -*-C-*-
-$Id: ntscreen.c,v 1.4
4 2000/04/20 20:49:08
cph Exp $
+$Id: ntscreen.c,v 1.4
5 2000/05/01 02:57:14
cph Exp $
Copyright (c) 1993-2000 Massachusetts Institute of Technology
@@
-3282,9
+3282,9
@@
allocate_event (SCREEN screen, SCREEN_EVENT_TYPE type)
{
new_event = free_events;
free_events = (free_events -> next);
- (new_event -> next) = 0;
n_free_events -= 1;
}
+ (new_event -> next) = 0;
if (event_queue_tail == 0)
event_queue_head = new_event;
else