search for: sanitz

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

Did you mean: sanity
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 the...
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
...vier Fourdan (1): modesetting: Use actual crtc position for pageflip Thierry Reding (3): meson: Remove usage of pkg-config --variable=includedir meson: Distribute more SDK headers meson: Add pixman-1 to required modules in xorg-server.pc Tobias Klausmann (2): glamor: sanitze handling of "Debug" Option for "dmabuf_capable" modesetting/drmmode: add NULL pointer check in drmmode_output_dpms git tag: xorg-server-1.19.99.903 https://xorg.freedesktop.org/archive/individual/xserver/xorg-server-1.19.99.903.tar.bz2 MD5: 514ca5990c32a9530985e0fc1dd1...
2007 Jun 19
0
NoMemoryError ActiveSupportMultibyte - Normalize
...th a NoMemoryError at one of the first steps, which is normalizing the file. Basically, the sequence is the user clicks import, this calls MiddleMan and starts a backgrounDRB task to import the file. The file is scanned through using Hpricot to get an idea on size and then is sent to normalize to sanitze the Unicode data. The ruby process running this is at about 500mb at this point... And at this point it crashes out with the stack trace attached. Any ideas? As I said, working without flaw on my MacBookPro. Also, the process works 100% OK on a file that is about 3-4mb. Document 10, worker j...
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";