[Mono-bugs] [Bug 595611] New: Invoking static NewGuid method on System.Guid class suspends program flow
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Sun Apr 11 15:04:11 EDT 2010
http://bugzilla.novell.com/show_bug.cgi?id=595611
http://bugzilla.novell.com/show_bug.cgi?id=595611#c0
Summary: Invoking static NewGuid method on System.Guid class
suspends program flow
Classification: Mono
Product: Mono: Runtime
Version: 2.6.x
Platform: Other
OS/Version: Other
Status: NEW
Severity: Critical
Priority: P5 - None
Component: JIT
AssignedTo: lupus at novell.com
ReportedBy: roystonwaddington at googlemail.com
QAContact: mono-bugs at lists.ximian.com
Found By: ---
Blocker: ---
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US)
AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.1.249.1045 Safari/532.5
Invoking static NewGuid method on System.Guid class suspends program flow.
Reproducible: Always
Steps to Reproduce:
public static void Repro()
{
Guid data = Guid.Empty;
try
{
// Program flow hangs.
data = Guid.NewGuid();
}
catch (Exception ex)
{
}
}
Actual Results:
The program flow does not continue beyond the invocation of NewGuid.
Expected Results:
The program flow should continue and return a Guid object.
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
More information about the mono-bugs
mailing list