XQuartz: Fix a deadlock in pre-dispatch code
The fact that this has been in place so long makes me really wonder if anybody cares about this running in Tiger or Leopard. Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
This commit is contained in:
parent
d1ef0d4964
commit
b4c4c65a35
|
@ -212,7 +212,7 @@ xprCreateFrame(RootlessWindowPtr pFrame, ScreenPtr pScreen,
|
||||||
#else
|
#else
|
||||||
pthread_rwlock_wrlock(&window_hash_rwlock);
|
pthread_rwlock_wrlock(&window_hash_rwlock);
|
||||||
x_hash_table_insert(window_hash, pFrame->wid, pFrame);
|
x_hash_table_insert(window_hash, pFrame->wid, pFrame);
|
||||||
pthread_rwlock_wrlock(&window_hash_rwlock);
|
pthread_rwlock_unlock(&window_hash_rwlock);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
xprSetNativeProperty(pFrame);
|
xprSetNativeProperty(pFrame);
|
||||||
|
|
Loading…
Reference in New Issue