Microsoft KB Archive/929140

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 18:35, 18 July 2020 by 3155ffGd (talk | contribs) (importing KB archive)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Article ID: 929140

Article Last Modified on 6/27/2007



APPLIES TO

  • Microsoft Windows Server 2003 R2 Datacenter Edition (32-Bit x86)
  • Microsoft Windows Server 2003 R2 Datacenter x64 Edition
  • Microsoft Windows Server 2003 R2 Enterprise Edition (32-Bit x86)
  • Microsoft Windows Server 2003 R2 Enterprise x64 Edition
  • Microsoft Windows Server 2003 R2 Standard Edition (32-bit x86)
  • Microsoft Windows Server 2003 R2 Standard x64 Edition



SYMPTOMS

Consider the following scenario. You have a Microsoft Windows Server 2003 R2-based computer that has Utilities and Software Development Kit (SDK) for UNIX-based Applications installed. On this computer, you call the calloc function in the Libc.a library. In this scenario, an access violation error occurs. Additionally, the calloc function tries to initialize more heap memory than is allocated.

CAUSE

This problem occurs because a call to the calloc function corrupts the heap memory.

RESOLUTION

Hotfix information

A supported hotfix is now available from Microsoft. However, this hotfix is intended to correct only the problem that this article describes. Apply this hotfix only to systems that are experiencing this specific problem.

To resolve this problem, submit a request to Microsoft Online Customer Services to obtain the hotfix. To submit an online request to obtain the hotfix, visit the following Microsoft Web site:

Note If additional issues occur or any troubleshooting is required, you might have to create a separate service request. The usual support costs will apply to additional support questions and issues that do not qualify for this specific hotfix. To create a separate service request, visit the following Microsoft Web site:

Prerequisites

To apply this hotfix, you must have Utilities and SDK for UNIX-based Applications for Windows Server 2003 R2 installed on the computer. For more information about how to obtain Utilities and SDK for UNIX-based Applications, visit the following Microsoft Web site:

Restart requirement

You do not have to restart the computer after you apply this 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.

x64 versions
File name File size Date Time
Usr_lib_libc.a 30,839 31-Jan-2007 14:05
Usr_lib_libcsafe.a 69,200 31-Jan-2007 14:05
Usr_lib_x86_libc.a 30,839 31-Jan-2007 14:11
Usr_lib_x86_libc.so.5.2 12,690 31-Jan-2007 14:12
Usr_lib_x86_libcsafe.a 53,355 31-Jan-2007 14:12
32-bit x86 versions
File name File size Date Time
Usr_lib_amd64_libcsafe.a 69,200 31-Jan-2007 14:33
Usr_lib_libc.a 30,839 31-Jan-2007 14:27
Usr_lib_libc.so.5.2 12,690 31-Jan-2007 14:33
Usr_lib_libcsafe.a 53,355 31-Jan-2007 14:27


WORKAROUND

To work around this problem, use the following code to override the calloc function in the Libsafe.a library that initializes the allocated memory.

void *calloc(size_t num, size_t size)
{
void *retp;

retp = malloc(size *= num);
if (NULL != retp) {
bzero(retp, size);
}

return retp;
}

STATUS

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

MORE INFORMATION

For more information, 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


Keywords: kbfix kbhotfixserver kbqfe kbpubtypekc KB929140