diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2008-07-08 15:12:45 +0930 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2008-07-10 16:02:54 +0930 |
commit | db86b8839f286e0e2efb5638b8ab2fe608707655 (patch) | |
tree | 44a09d1ba83ad1834270368dafb7c5dc9871148c /include | |
parent | 08e2c625f620688d35f3b443ffb878e8e991ff57 (diff) |
dix: free GenericMask allocations when destroying window.
Diffstat (limited to 'include')
-rw-r--r-- | include/windowstr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/windowstr.h b/include/windowstr.h index 0e45262d8..2d11f6ec7 100644 --- a/include/windowstr.h +++ b/include/windowstr.h @@ -115,7 +115,7 @@ typedef struct _WindowOpt { #endif struct _OtherInputMasks *inputMasks; /* default: NULL */ DevCursorList deviceCursors; /* default: NULL */ - struct _GenericClientMasks *geMasks;/* default: NULL */ + struct _GenericClientMasks *geMasks; /* default: NULL */ WindowAccessRec access; } WindowOptRec, *WindowOptPtr; |