[PATCH] Initialize event_notify after allocating the memory for it.

2009-01-31 Thread Brian Rogers
An uninitialized or otherwise invalid condition variable can apparently cause a hang in pthread_cond_broadcast. Ekiga, openoffice, and xine at least are freezing as a result of event_notify never being initialized. Signed-off-by: Brian Rogers br...@xyzw.org --- src/xcb_disp.c |3 +++ 1 files

Re: [PATCH] Initialize event_notify after allocating the memory for it.

2009-01-31 Thread Barton C Massey
Thanks hugely for this catch, Brian! Looks like one of those hard-to-catch things where most of the time it would come back 0, which on most machines is a proper initialization. Pushed. Bart Massey b...@cs.pdx.edu In message 1233427071-19581-2-git-send-email-br...@xyzw.org you wrote: