DOCUMENT:Q193509 06-MAY-2001 [visualc] TITLE :FIX: Exception When Calling strftime() Function PRODUCT :Microsoft C Compiler PROD/VER:winnt:6.0 OPER/SYS: KEYWORDS:kbCRT kbVC600 kbVC600bug kbVS600sp2 kbVS600sp2bug kbVS600sp2fix kbVS600SP1fix ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Visual C++, 32-bit Professional Edition, version 6.0 ------------------------------------------------------------------------------- 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: - Call setlocale once before other threads are created. - Synchronize access to functions that use locale information. STATUS ====== Microsoft has confirmed this to be 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://msdn.microsoft.com/vstudio/sp/default.asp For more information on the Visual Studio 6.0 Service Pack 1, please see the following articles in the Microsoft Knowledge Base: Q193009 INFO: Visual Studio 6.0 Service Pack 1 Readme Q194022 INFO: Visual Studio 6.0 Service Pack 1 What, Where, Why Q194295 HOWTO: Tell that Visual Studio 6.0 Service Packs Are Installed MORE INFORMATION ================ The following sample program reproduces an exception. For multiprocessor systems, the problem occurs almost immediately: // Compile /MT or /MD #include #include #include void work( void* pArg ) // This uses the locale info pointer. { char str256[256]; time_t t; struct tm* ptm; t = time(0); ptm = localtime( &t ); for (;;) strftime( str256, 256, "%a%b%c%d%x%y", ptm ); } void main() { _beginthread( work, 0, 0 ); for(;;) // This changes the locale info pointer. { setlocale(LC_ALL,"english"); setlocale(LC_ALL,"german"); setlocale(LC_ALL,"french"); setlocale(LC_ALL,"spannis"); setlocale(LC_ALL,"russian"); } } ====================================================================== Keywords : kbCRT kbVC600 kbVC600bug kbVS600sp2 kbVS600sp2bug kbVS600sp2fix kbVS600SP1fix Technology : kbVCsearch kbAudDeveloper kbVC600 kbVC32bitSearch Version : winnt:6.0 Issue type : kbbug Solution Type : kbfix ============================================================================= THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY. Copyright Microsoft Corporation 2001.