Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

Consider the following scenario for a Microsofot .NET Framework 2.0-based application:

  • The application targets to x64 platform or Any CPU.

  • When you build the corresponding project, you specify the /o+ flag in the csc.exe command line. Or, you select the Optimize Code flag in the Build section of the Project Properties page in Visual Studio.

  • The source file in the project contains a try/catch block inside a loop. There is no execution code between the end of the catch block and the end of the loop. A ThreadAbortException exception is raised after the catch block.

  • The source file contains catch blocks in a higher function level that aims to catch the ThreadAbortException exception.

  • You run the application.

In this scenario, the exception is not caught and the application crashes unexpectedly.

Symptoms

Hotfix information

A supported hotfix is now available from Microsoft. However, it is intended to correct only the problem that is described in this article. Apply it only to systems that are experiencing this specific problem. This hotfix may receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next software update that contains this hotfix.

To resolve this problem immediately, contact Microsoft Customer Support Services to obtain the hotfix. For a complete list of Microsoft Customer Support Services telephone numbers and information about support costs, visit the following Microsoft Web site:

http://support.microsoft.com/contactus/?ws=supportNote In special cases, charges that are ordinarily incurred for support calls may be canceled if a Microsoft Support Professional determines that a specific update will resolve your problem. The usual support costs will apply to additional support questions and issues that do not qualify for the specific update in question.

Prerequisites

There are no prerequisites to install this hotfix.

Restart requirement

You must restart the computer after you apply the hotfix.

Hotfix replacement information

This hotfix does not replace any other hotfixes.

File information

The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time item in Control Panel.

For all supported x86-based versions of Windows 7

File name

File version

File size

Date

Time

Mscorlib.dll

2.0.50727.5020

4,550,656

10-Jun-2010

22:58

Mscordacwks.dll

2.0.50727.5020

995,672

10-Jun-2010

22:58

Mscorwks.dll

2.0.50727.5020

5,822,800

10-Jun-2010

22:58

Sos.dll

2.0.50727.5020

388,936

10-Jun-2010

22:58

For all supported x64-based versions of Windows 7 and of Windows Server 2008 R2

File name

File version

File size

Date

Time

Mscorlib.dll

2.0.50727.5020

4,567,040

10-Jun-2010

22:50

Mscordacwks.dll

2.0.50727.5020

1,757,528

10-Jun-2010

22:50

Mscorwks.dll

2.0.50727.5020

10,043,728

10-Jun-2010

22:50

Sos.dll

2.0.50727.5020

485,192

10-Jun-2010

22:50

For all supported IA-64-based versions of Windows Server 2008 R2

File name

File version

File size

Date

Time

Mscorlib.dll

2.0.50727.5020

4,009,984

10-Jun-2010

22:49

Mscordacwks.dll

2.0.50727.5020

3,086,168

10-Jun-2010

22:49

Mscorwks.dll

2.0.50727.5020

20,187,472

10-Jun-2010

22:49

Sos.dll

2.0.50727.5020

872,776

10-Jun-2010

22:49

To work around this issue, add code between the end of the catch block and the end of the loop.

To reproduce this issue, compile the following example code by using the csc.exe /o+ command and generate an application that targets to the x64 platform by using the .NET Framework 2.0.

using System;
using System.Threading;

class P
{
private static void Foo()
{
while (true)
{
try
{
Thread.CurrentThread.Abort();
}
catch (Exception)
{
// throw;
Console.WriteLine("Inside catch");
}
}
}

public static void Main(string[] a)
{
try
{
Foo();
}
catch (System.Threading.ThreadAbortException)
{
System.Threading.Thread.ResetAbort();
}

Console.WriteLine("Done!");
}
}

Before you install the hotfix, the application crashes; after you install the hotfix, you receive the following output in Console:


Resolution

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

Status

For more information about software update terminology, click the following article number to view the article in the Microsoft Knowledge Base:

824684 Description of the standard terminology that is used to describe Microsoft software updates

More Information

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×