FIX: GP Fault When For Loop Used with Unsigned Char Index

Last reviewed: September 18, 1997
Article ID: Q128897
2.00 2.10 WINDOWS NT kbtool kbbuglist kbfixlist

The information in this article applies to:

  • The C/C++ Compiler (CL.EXE) included with: Microsoft Visual C++, 32-bit Edition, versions 2.0 and 2.1 on the following platform: x86 only

SYMPTOMS

If you access a structure member when using an unsigned char index in a For loop, a general protection (GP) fault occurs.

CAUSE

When the compiler is optimizing for speed, only the low byte of the register where the index is stored is zeroed. Later on, the full extended register is used in calculating the offset of the structure member. Because the rest of the register is never zeroed, the offset used is invalid.

RESOLUTION

Use either one of the following workarounds:

  • Change the type of the For loop index to any type other than unsigned char.

    -or-

  • Do not use speed optimizations.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This bug was corrected in Microsoft Visual C++, 32-bit Edition, version 4.0.

MORE INFORMATION

The sample code below can be used to demonstrate the problem.

Due to the complexity of the optimization algorithm, some structures may work while others fail. However until this bug is fixed, it should be considered unsafe to use unsigned char indexing in a For loop with speed optimization.

Sample Code to Reproduce Problem

/* Compile options needed: any speed optimizations
*/

struct TEST {
   char    filler[37];
   int     x;
} xyz[2];

void main()
{
   unsigned char i = 1;

   for(i=0; i<2; i++)
   {
      xyz[i].x = -1;
   }
}


Additional reference words: 2.00 2.10 VCx86 GPF
KBCategory: kbtool kbbuglist kbfixlist
KBSubcategory: CLIss
Keywords : CLIss kbbuglist kbfixlist kbtool
Version : 2.00 2.10
Platform : NT WINDOWS
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.

Last reviewed: September 18, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.