clrinterop / clrinterop-issues-sandbox

0 stars 0 forks source link

Bitfields resulting a Memory Leak #27

Open jozefizso opened 12 years ago

jozefizso commented 12 years ago

Issue from Thu, 28 Jun 2012 11:59:09 GMT Originally opened at https://clrinterop.codeplex.com/workitem/10275


If you try to Translate this Snippet:   struct _PowerFlags { ULONG64 PreservedDuringStandby : 1; ULONG64 PreservedDuringHibernate : 1; ULONG64 PartiallyPreservedDuringHibernate : 1; ULONG64 Reserved : 61; } PowerFlags;   It will make the Assistant unresponsive and it will consume all of your memory.