-
When I use the address sanitizer from GCC 10.2.0 with glibc 2.33 on MIPS32 BE on the example application from the sem_wait man page, it does not work correctly.
https://man7.org/linux/man-pages/man3/…
-
The following example from https://github.com/google/sanitizers/wiki/AddressSanitizerExampleGlobalOutOfBounds will detect a buffer overflow.
```c
// RUN: clang -O -g -fsanitize=address %t && ./a.o…
yamam updated
2 years ago
-
The documentation on how to [build fuzz targets for coverage](https://google.github.io/oss-fuzz/advanced-topics/code-coverage/#build-fuzz-targets) seems to imply that running `python infra/helper.py b…
-
Hello, is it possible to allow the tags attributes (like class, style, etc) for specifics (or all ) tags in one time in yaml ?
Currently, I've to do this in my config file :
```yaml
html_sanit…
-
I'm starting to use the Thread Sanitizer and debugged a few issues that turned out to be false. It's somewhat related to #814 but not quite the same:
```
#include …
-
We have a glibc patch to export another internal implementation for use by the sanitizers (specifically Leak Sanitizer apparently):
* [Make _thread_db_sizeof_pthread public for Sanitizers](https://…
-
Some real cases:
```c
void foo(uint32_t x)
{
// optimized version of (x > 10 && x < 30)
if (x - 10 < 20) ...
}
int32_t bar(int32_t x, int32_t y, int32_t w, int32_t z)
{
// memcmp-like …
-
Hi, I'm not familiar with how the address sanitizer actually works, recently I met a situation that asan can't detect the out-of-bound write problem, I don't know why, can you help me?
I found a […
-
| | |
|------------------|-----------------|
|Previous ID | SR-6622 |
|Radar | None |
|Original Reporter | @bob-wilson …
-
We need to modify the Bazel config to allow running the unit tests with thread and undefined behavior sanitizers, address sanitizer & static analyzer.
To pick up after #1291 is merged.
cc @mwils…