Author: gonzalo
Date: 2005-04-21 23:10:45 -0400 (Thu, 21 Apr 2005)
New Revision: 43425

Modified:
   trunk/mcs/class/corlib/System.IO/ChangeLog
   trunk/mcs/class/corlib/System.IO/UnexceptionalStreamWriter.cs
Log:
2005-04-21 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>

        * UnexceptionalStreamWriter.cs: don't throw anything on Flush. Closes
        bug #74190.



Modified: trunk/mcs/class/corlib/System.IO/ChangeLog
===================================================================
--- trunk/mcs/class/corlib/System.IO/ChangeLog  2005-04-22 02:34:23 UTC (rev 
43424)
+++ trunk/mcs/class/corlib/System.IO/ChangeLog  2005-04-22 03:10:45 UTC (rev 
43425)
@@ -1,3 +1,8 @@
+2005-04-21 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>
+
+       * UnexceptionalStreamWriter.cs: don't throw anything on Flush. Closes
+       bug #74190.
+
 2005-04-13 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>
 
        * Path.cs: don't trim the path in CanonicalizePath on non-windows

Modified: trunk/mcs/class/corlib/System.IO/UnexceptionalStreamWriter.cs
===================================================================
--- trunk/mcs/class/corlib/System.IO/UnexceptionalStreamWriter.cs       
2005-04-22 02:34:23 UTC (rev 43424)
+++ trunk/mcs/class/corlib/System.IO/UnexceptionalStreamWriter.cs       
2005-04-22 03:10:45 UTC (rev 43425)
@@ -88,7 +88,7 @@
                {
                        try {
                                base.Flush ();
-                       } catch (IOException) {
+                       } catch (Exception) {
                        }
                }
 

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

Reply via email to