Fix poll_events returning None when it shouldn't

This commit is contained in:
tomaka 2015-02-12 18:42:02 +01:00
parent de56a569e8
commit 59220d35ce

View file

@ -119,6 +119,7 @@ impl<'a> Iterator for PollEventsIterator<'a> {
return Some(ev);
}
loop {
let mut xev = unsafe { mem::uninitialized() };
let res = unsafe { ffi::XCheckMaskEvent(self.window.x.display, Int::max_value(), &mut xev) };
@ -238,8 +239,7 @@ impl<'a> Iterator for PollEventsIterator<'a> {
_ => ()
};
return None;
}
}
}