Skip to content

Commit fab571c

Browse files
authored
fix links
1 parent ab00c49 commit fab571c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/sanitizers/asan-known-issues.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,16 +83,16 @@ Thread local variables (global variables declared with `__declspec(thread)` or `
8383

8484
If all of the code in a process isn't compiled with `/fsanitize=address`, ASan may not be able to diagnose all memory safety errors. The most common example is when a DLL is compiled with ASan but is loaded into a process that contains code that wasn't compiled with ASan. In this case, ASan attempts to categorize allocations that took place prior to ASan initialization. But if those allocations are reallocated, moved, and so on, ASan tries to own and monitor the lifetime of memory loads and stores.
8585

86-
If all of the DLLs that were compiled with ASan are unloaded from the process before the process ends (as is the case with test drivers such as [TAEF](https://learn.microsoft.com/en-us/windows-hardware/drivers/taef/)), there may be crashes due to dangling references to intercepted functions such as `memcmp`, `memcpy`, `memmove`, and so on.
86+
If all of the DLLs that were compiled with ASan are unloaded from the process before the process ends (as is the case with test drivers such as [TAEF](/windows-hardware/drivers/taef/))), there may be crashes due to dangling references to intercepted functions such as `memcmp`, `memcpy`, `memmove`, and so on.
8787

8888
Please report any bugs to our [Developer Community](https://aka.ms/feedback/report?space=62).
8989

9090
## See also
9191

92-
[AddressSanitizer overview](./asan.md)\
93-
[AddressSanitizer build and language reference](./asan-building.md)\
94-
[AddressSanitizer runtime reference](./asan-runtime.md)\
95-
[AddressSanitizer shadow bytes](./asan-shadow-bytes.md)\
96-
[AddressSanitizer cloud or distributed testing](./asan-offline-crash-dumps.md)\
97-
[AddressSanitizer debugger integration](./asan-debugger-integration.md)\
98-
[AddressSanitizer error examples](./asan-error-examples.md)
92+
[AddressSanitizer overview](asan.md)\
93+
[AddressSanitizer build and language reference](asan-building.md)\
94+
[AddressSanitizer runtime reference](asan-runtime.md)\
95+
[AddressSanitizer shadow bytes](asan-shadow-bytes.md)\
96+
[AddressSanitizer cloud or distributed testing](asan-offline-crash-dumps.md)\
97+
[AddressSanitizer debugger integration](asan-debugger-integration.md)\
98+
[AddressSanitizer error examples](asan-error-examples.md)

0 commit comments

Comments
 (0)