| Absolute File Name: | /home/opencoverage/opencoverage/guest-scripts/libressl/src/crypto/mem_clr.c |
| Source code | Switch to Preprocessed file |
| Line | Source | Count |
|---|---|---|
| 1 | /* $OpenBSD: mem_clr.c,v 1.4 2014/06/12 15:49:27 deraadt Exp $ */ | - |
| 2 | - | |
| 3 | /* Ted Unangst places this file in the public domain. */ | - |
| 4 | #include <string.h> | - |
| 5 | #include <openssl/crypto.h> | - |
| 6 | - | |
| 7 | void | - |
| 8 | OPENSSL_cleanse(void *ptr, size_t len) | - |
| 9 | { | - |
| 10 | explicit_bzero(ptr, len); | - |
| 11 | } never executed: end of block | 0 |
| Source code | Switch to Preprocessed file |