Changes between Initial Version and Version 1 of Ticket #11457, comment 6
- Timestamp:
- Jan 3, 2017, 6:57:01 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11457, comment 6
initial v1 1 1 Yes, the handle leak occurs in Windows. I have not experienced it in Linux. Here is a simple example class. 2 2 3 4 {{{ 3 5 class UserInfo 4 6 { … … 15 17 } 16 18 19 }}} 20 17 21 You can see the leak by creating a simple windows app that launches multiple threads and puts them each in a loop calling IsEntitled. It will leak event handles for each (or maybe just some?) lock contention events. So the more threads you launch, the more handle leaks you will see.