Skip to content

Commit 1029fab

Browse files
authored
Merge branch 'main' into FromPublicMasterBranch
2 parents 9719888 + 8e66540 commit 1029fab

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 during memory operations. You can change that by sending the flags shown above 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)