DOCERR: Setdflag.c Sample for _CrtSetDbgFlag Missing Tilde (~)

Last reviewed: September 26, 1997
Article ID: Q142420
The information in this article applies to:
  • The C Run-time (CRT) included with: Microsoft Visual C++, 32-bit Edition, version 4.0, 4.1, 4.2, 5.0

SUMMARY

The Setdflag.c sample program in the Help under _CrtSetDbgFlag(), contains the following section of code which is missing a tilde (~) character:

  /*
  * Set the debug-heap flag to no longer keep freed blocks in the
  * heap's linked list and turn on Debug type allocations (CLIENT)
  */
   tmpDbgFlag = _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG);
   tmpDbgFlag |= _CRTDBG_ALLOC_MEM_DF;
   tmpDbgFlag &= _CRTDBG_DELAY_FREE_MEM_DF;  // This line is wrong
   _CrtSetDbgFlag(tmpDbgFlag);

The third line of code should be:

   tmpDbgFlag &= ~_CRTDBG_DELAY_FREE_MEM_DF;

MORE INFORMATION

To disable a flag with the _CrtSetDbgFlag() function, you should AND the variable with the bitwise NOT of the bitmask.


Additional query words: vcbuglist400
Keywords : CRTIss
Version : WinNT:4.0,4.1,4.2,5.0
Platform : NT WINDOWS
Issue type : kbdocerr


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 26, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.