summaryrefslogtreecommitdiffstats
path: root/suppressions.lsan
Commit message (Collapse)AuthorAge
* Removed ResourceAccess::Private leak and resolved resulting memoryChristian Mollekopf2017-11-16
| | | | | | | | | corruption. It looks like the memory corruption (malloc started to crash) was coming QLocalSocket related signals. According to the docs it's not safe (whatever that means), to delete a QObject with pending signals, so we use deleteLater to schedule it's deletion. This resolved the crashes.
* lsan suppressionsChristian Mollekopf2017-11-14
|
* qrand is leaking it seems?Christian Mollekopf2017-11-14
| | | | perhaps just not properly instrumented.
* Suppress the known ResourceAccess leakChristian Mollekopf2017-11-12
|
* lsan leak suppressionsChristian Mollekopf2017-11-12
We get a lot of known "leaks" from lmdb. Some are willingly (we never close the environment and dbi's), others are likely because lmdb itself is not instrumented.