[Mono-devel-list] [PATCH] Stop BmpCodec.cs from crashing the build

Chris Ladd caladd at particlestorm.net
Thu Oct 9 17:57:59 EDT 2003


Hello,

Attached is a path to System.Drawing.Imaging.BmpCodec to make it stop
crashing the build. I simply removed a break that was not needed (and
would never be called).

-- 
Chris Ladd
Email: caladd at particlestorm.net
Web: http://www.particlestorm.net
GnuPG Key ID: 0x85B2BEAE
-------------- next part --------------
? BmpCodec.cs.diff
Index: BmpCodec.cs
===================================================================
RCS file: /mono/mcs/class/System.Drawing/System.Drawing.Imaging/BmpCodec.cs,v
retrieving revision 1.4
diff -u -r1.4 BmpCodec.cs
--- BmpCodec.cs	30 Jul 2003 02:25:46 -0000	1.4
+++ BmpCodec.cs	9 Oct 2003 21:53:06 -0000
@@ -234,7 +234,7 @@
 				break;
 				default:
 					throw new NotImplementedException(String.Format("This format is not yet supported : {0} bpp", bmih.biBitCount));
-				break;
+				//break;
 			}
 			return true;
 		}


More information about the Mono-devel-list mailing list