Skip to content

Commit c63bf71

Browse files
committed
Another file path fix.
1 parent 99255ee commit c63bf71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/sanitizers/error-memcpy-param-overlap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ cl example1.cpp /fsanitize=address /Zi /Oi
3939
devenv /debugexe example1.exe
4040
```
4141

42-
The [/Oi flag](../../build/reference/oi-generate-intrinsic-functions.md) tells the compiler to treat memcpy and memmove as intrinsic functions. This is necessary because some versions of the standard library implement memcpy and memmove in the same way. Because ASAN is a dynamic analysis tool, it only detects errors with an observable runtime effect.
42+
The [/Oi flag](../build/reference/oi-generate-intrinsic-functions.md) tells the compiler to treat memcpy and memmove as intrinsic functions. This is necessary because some versions of the standard library implement memcpy and memmove in the same way. Because ASAN is a dynamic analysis tool, it only detects errors with an observable runtime effect.
4343

4444
### Resulting error
4545

0 commit comments

Comments
 (0)