Skip to content

Commit eeae5de

Browse files
TylerMSFTTylerMSFT
authored andcommitted
wordsmith
1 parent 5a6fd99 commit eeae5de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/c-runtime-library/reference/crtsetdbgflag.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ You can specify how often the C run-time library performs validation of the debu
5757
|`_CRTDBG_CHECK_EVERY_1024_DF`|1024|
5858
|`_CRTDBG_CHECK_DEFAULT_DF`|0 (by default, no heap checks)|
5959

60-
By default, **`_CrtCheckMemory`** is never called.
60+
By default, **`_CrtCheckMemory`** isn't called when you call **`malloc`**, **`realloc`**, **`free`**, and **`_msize`**. You can change that by using the flags above that you send to [`_CrtSetDbgFlag()`](crtsetdbgflag.md).
6161

62-
For example, you could specify a heap check every 16 **`malloc`**, **`realloc`**, **`free`**, and **`_msize`** operations with the following code:
62+
For example, you can specify a heap check every 16 **`malloc`**, **`realloc`**, **`free`**, and **`_msize`** operations with the following code:
6363

6464
```C
6565
#include <crtdbg.h>

0 commit comments

Comments
 (0)