Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=78886 --- shadow/78886 2006-08-01 11:42:12.000000000 -0400 +++ shadow/78886.tmp.13415 2006-08-01 15:45:20.000000000 -0400 @@ -1,13 +1,13 @@ Bug#: 78886 Product: Mono: Class Libraries Version: 1.1 OS: unknown OS Details: -Status: NEW -Resolution: +Status: RESOLVED +Resolution: FIXED Severity: Unknown Priority: Normal Component: libgdiplus AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] QAContact: [EMAIL PROTECTED] @@ -93,6 +93,14 @@ { Image.FromFile ("wsiearth.tif"); } } Looks like we're mishandling the properties, time to valgind... + +------- Additional Comments From [EMAIL PROTECTED] 2006-08-01 15:45 ------- +the crash is due to a typo +- buffer = GdipAlloc(3 * bits_per_sample & sizeof(uint16)); ++ buffer = GdipAlloc(3 * bits_per_sample * sizeof(uint16)); + +It's fixed in SVN along another memory leaks found with the sample. +Thanks for the bug report! _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
