OpenCoverage

explicit_bzero.c

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/openssh/src/openbsd-compat/explicit_bzero.c
Switch to Source codePreprocessed file
LineSourceCount
1-
2-
3-
4-
5-
6-
7-
8-
9-
10static void (* volatile ssh_bzero)(void *, size_t) = bzero;-
11-
12void-
13explicit_bzero(void *p, size_t n)-
14{-
15 if (n == 0
n == 0Description
TRUEevaluated 1356 times by 3 tests
Evaluated by:
  • ssh-keygen
  • test_kex
  • test_sshkey
FALSEevaluated 5762854 times by 8 tests
Evaluated by:
  • ssh-keygen
  • sshd
  • test_bitmap
  • test_hostkeys
  • test_kex
  • test_sshbuf
  • test_sshkey
  • test_utf8
)
1356-5762854
16 return;
executed 1356 times by 3 tests: return;
Executed by:
  • ssh-keygen
  • test_kex
  • test_sshkey
1356
17 ssh_bzero(p, n);-
18}
executed 5762854 times by 8 tests: end of block
Executed by:
  • ssh-keygen
  • sshd
  • test_bitmap
  • test_hostkeys
  • test_kex
  • test_sshbuf
  • test_sshkey
  • test_utf8
5762854
Switch to Source codePreprocessed file

Generated by Squish Coco 4.2.2