-
We need to confirm that we handle the memory fencing correctly for the case where a qthread suspends and then gets stolen to another shepherd. It's not currently obvious to me if/where that's getting …
-
I wonder if we could also handle `st.Length = 0` (just the hardcoded 0 case).
_Originally posted by @dotpaul in https://github.com/dotnet/roslyn-analyzers/pull/4024_
---
Should be possible, i…
-
If sanitizing an email address like `admin@mailserver` with `$sanitizer->email`, a blank string is returned (=invalid email). However, it is actually a valid format [according to this list](https://en…
-
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 […
-
| | |
|--------------------|----|
| Bugzilla Link | [PR50225](https://bugs.llvm.org/show_bug.cgi?id=50225) |
| Status | NEW |
| Importance | P normal |
|…
-
Hi, Please help me to find the reason for below callstack.
```
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x5bae8b70 (LWP 43245)]
0x5563fef3 in __asan_region_is_po…
-
Hi,
when fuzzing cJSON, there is a timeout reported by ASAN. There might is an infinite loop bug in cJSON_DeleteItemFromObjectCaseSensitive.
```
==617073== ERROR: libFuzzer: timeout after 241…