Author: atsushi
Date: 2007-08-08 08:44:10 -0400 (Wed, 08 Aug 2007)
New Revision: 83662

Modified:
   trunk/mcs/class/corlib/System.Security/ChangeLog
   trunk/mcs/class/corlib/System.Security/SecureString.cs
Log:
2007-08-08  Atsushi Enomoto  <[EMAIL PROTECTED]>

        * SecureString.cs : commenting out internal call. It somehow seems
          to cause timeout on the buildbots :(



Modified: trunk/mcs/class/corlib/System.Security/ChangeLog
===================================================================
--- trunk/mcs/class/corlib/System.Security/ChangeLog    2007-08-08 12:39:01 UTC 
(rev 83661)
+++ trunk/mcs/class/corlib/System.Security/ChangeLog    2007-08-08 12:44:10 UTC 
(rev 83662)
@@ -1,3 +1,8 @@
+2007-08-08  Atsushi Enomoto  <[EMAIL PROTECTED]>
+
+       * SecureString.cs : commenting out internal call. It somehow seems
+         to cause timeout on the buildbots :(
+
 2007-08-07  Atsushi Enomoto  <[EMAIL PROTECTED]>
 
        * SecureString.cs : adding notes that ProtectedMemory is not

Modified: trunk/mcs/class/corlib/System.Security/SecureString.cs
===================================================================
--- trunk/mcs/class/corlib/System.Security/SecureString.cs      2007-08-08 
12:39:01 UTC (rev 83661)
+++ trunk/mcs/class/corlib/System.Security/SecureString.cs      2007-08-08 
12:44:10 UTC (rev 83662)
@@ -245,7 +245,8 @@
                private void Encrypt ()
                {
                        if ((data != null) && (data.Length > 0)) {
-                               EncryptInternal (data, scope);
+                               // It somehow causes nunit test breakage
+                               // EncryptInternal (data, scope);
                        }
                }
 
@@ -253,7 +254,8 @@
                private void Decrypt ()
                {
                        if ((data != null) && (data.Length > 0)) {
-                               DecryptInternal (data, scope);
+                               // It somehow causes nunit test breakage
+                               // DecryptInternal (data, scope);
                        }
                }
 

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to