Security Audit 5.4: Issue Garbage Collect after loading persistence.

This commit is contained in:
Jim Norman 2006-04-26 16:56:40 +00:00
parent 8230adb2d6
commit 43a64f3df3
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
-------------------------------------------------------------------
Wed Apr 26 10:55:20 MST 2006 - jnorman@novell.com
- Security Audit 5.4: Issue Garbage Collect after loading persistence.
-------------------------------------------------------------------
Wed Apr 26 10:26:20 MST 2006 - jnorman@novell.com
- Security Audit 5.5: Check length of message to be within range.

View File

@ -325,6 +325,10 @@ namespace sscs.lss
{
CSSSLogger.ExpLog(e.ToString());
}
// collect now to remove old data from memory
GC.Collect();
return true;
}