PRB: DrawText Can Cause Stack Fault

Last reviewed: May 24, 1996
Article ID: Q151488
The information in this article applies to:
  • Microsoft Windows Software Development Kit (SDK) for Windows, versions 3.1, 3.11

SYMPTOMS

In Windows versions 3.1 and 3.11, when a string that contains long, contiguous substrings of spaces is passed to DrawText, and the DT_WORDBREAK flag is specified, a stack fault may occur.

CAUSE

The DT_WORDBREAK flag specifies that DrawText break the string between words. The method used by DrawText to determine where these breaks occur involves recursion. If the stack size is small enough and the number of spaces is large enough, the recursion causes a stack fault.

RESOLUTION

There are two ways to work around this problem. One is to raise the stack size of the application. This can be done by adding a STACKSIZE statement to the application's .DEF file.

Another solution that drastically speeds up the call to DrawText is to parse the string and turn all contiguous strings of spaces into single spaces. The resulting string can then be passed to DrawText without the overhead that the original string would have demanded.


Additional reference words: 3.10 3.11 16-bit recurse huge space overflow
KBCategory: kbgraphic
KBSubcategory: GdiMisc



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: May 24, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.