This website works better with JavaScript.
Home
Help
Sign In
cacalabs
/
libcaca
mirror of
https://github.com/cacalabs/libcaca.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
7
Wiki
Activity
Browse Source
* Fix a tiny use of uninitialised memory in caca_get_event() that may have
lead to deadlocks.
tags/v0.99.beta14
Sam Hocevar
sam
17 years ago
parent
b7a785ff38
commit
367e1ef512
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
caca/event.c
+ 1
- 1
caca/event.c
View File
@@ -68,7 +68,7 @@ int caca_get_event(caca_display_t *dp, unsigned int event_mask,
caca_event_t *ev, int timeout)
{
caca_privevent_t privevent;
caca_timer_t timer;
caca_timer_t timer
= {0, 0}
;
int usec = 0;
if(!event_mask)
Write
Preview
Loading…
Cancel
Save