Skip to content

Commit ce0f5e2

Browse files
authored
typo: folloiwng -> following
1 parent 230ebb0 commit ce0f5e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/debugger/allocation-hooks-and-c-run-time-memory-allocations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ms.workload:
2424
- "multiple"
2525
---
2626
# Allocation Hooks and C Run-Time Memory Allocations
27-
A very important restriction on allocation hook functions is that they must explicitly ignore `_CRT_BLOCK` blocks. These blocks are the memory allocations made internally by C run-time library functions if they make any calls to C run-time library functions that allocate internal memory. You can ignore `_CRT_BLOCK` blocks by including the folloiwng code at the beginning of your allocation hook function:
27+
A very important restriction on allocation hook functions is that they must explicitly ignore `_CRT_BLOCK` blocks. These blocks are the memory allocations made internally by C run-time library functions if they make any calls to C run-time library functions that allocate internal memory. You can ignore `_CRT_BLOCK` blocks by including the following code at the beginning of your allocation hook function:
2828

2929
```cpp
3030
if ( nBlockUse == _CRT_BLOCK )

0 commit comments

Comments
 (0)