search for: sanitzer

Displaying 5 results from an estimated 5 matches for "sanitzer".

Did you mean: sanitizer
2015 Feb 26
0
[LLVMdev] SAFECode testsuite query
...come up with the following that are not provided in ASAN/MSAN/Clang S.A > -> dangling pointer error and detection First, Clang's static analyzer is a static analysis bug finding tool. It won't be able to find every memory safety error in a program. In contrast, tools like Address Sanitzer and SAFECode instrument programs to detect (or mitigate) memory safety errors at run-time. Second, focusing on tools like ASan, SAFECode, etc., a more accurate statement is that: a) SAFECode, with automatic pool allocation enabled, can make dangling pointers "harmless" (in that they...
2015 Feb 26
2
[LLVMdev] SAFECode testsuite query
Hello All, I am looking at exploring what benefits SAFECode has to offer over clang S.A and llvm's instrumentation tools like memory sanitizer and address sanitizer. I could come up with the following that are not provided in ASAN/MSAN/Clang S.A -> dangling pointer error and detection -> crashes in system libraries due to security vulnerabilities. In the process, I wanted to run the
2018 Apr 02
0
[ANNOUNCE] xorg-server 1.19.99.903
Fixes for meson, modesetting, and a crash I introduced right before RC2. Adam Jackson (1): xserver 1.20 RC3 Emil Velikov (2): docs: purge some ISA references docs: remove resource management references Louis-Francis Ratté-Boulianne (2): modesetting: Ignore alpha channel when importing BOs for modesetting modesetting: Fix reported size when using atomic modesetting
2007 Jun 19
0
NoMemoryError ActiveSupportMultibyte - Normalize
Hello all, I am importing large word documents. I have a test file which is 30mb in length. I run this through a series of processes to clean it up and extract the data i need to inject bits of it into a database. The 30mb file runs fine on my Mac. But on the FreeBSD server dies with a NoMemoryError at one of the first steps, which is normalizing the file. Basically, the sequence is the user
2017 Jun 08
2
Non-standard C++ usage
~/workspace/LLVM/llvm/projects/compiler-rt/lib/tsan/rtl/tsan_report.cc: In function ‘const char* __tsan::ReportTypeString(__tsan::ReportType, __sanitizer::uptr)’: ~/workspace/LLVM/llvm/projects/compiler-rt/lib/tsan/rtl/tsan_report.cc:95:41: warning: ISO C++ does not allow ?: with omitted middle operand [-Wpedantic] return GetReportHeaderFromTag(tag) ?: "race on external object";