Article ID: 193509 - Last Review: August 7, 2007 - Revision: 2.1 FIX: Exception When Calling strftime() FunctionThis article was previously published under Q193509 SYMPTOMS
Multithreaded applications may experience exceptions or incorrect results
when calling the C run-time library (CRT) strftime() function. This
behavior is particularly prevalent on multiprocessor machines.
CAUSE
The strftime() function is dependent on an internal pointer for locale-
related information that is necessary for formatting time and date strings.
This pointer is used, and can be modified, by other components of the CRT,
but is not protected for exclusive use within the strftime() function. This
allows other threads to modify the pointer while strftime() is using it.
RESOLUTION
The internal pointer is modified when calling the setlocale() CRT function.
To prevent the pointer from being inadvertently modified while being used,
use one of the following two workarounds:
STATUSMicrosoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article. This bug has been fixed in the Visual Studio 6.0 Service Pack 1. To obtain this service pack, please see: http://msdn2.microsoft.com/en-us/vstudio/Aa718362.aspx
(http://msdn2.microsoft.com/en-us/vstudio/Aa718362.aspx)
For more information on the Visual Studio 6.0 Service Pack 1, please see
the following articles in the Microsoft Knowledge Base:
193009 INFO: Visual Studio 6.0 Service Pack 1 Readme
(http://support.microsoft.com/kb/193009/EN-US/
)
194022 INFO: Visual Studio 6.0 Service Pack 1 What, Where, Why (http://support.microsoft.com/kb/194022/EN-US/ ) 194295 HOWTO: Tell that Visual Studio 6.0 Service Packs Are Installed
(http://support.microsoft.com/kb/194295/EN-US/
)
MORE INFORMATION
The following sample program reproduces an exception. For multiprocessor
systems, the problem occurs almost immediately:
| Article Translations
|
Back to the top
