1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-20 10:37:24 -07:00

lcov exclusion

This commit is contained in:
Frank Denis 2014-09-23 21:19:49 -07:00
parent 5a7782eb6e
commit f71c1c0e17

View File

@ -36,7 +36,7 @@ encode64_uint32(uint8_t * dst, size_t dstlen, uint32_t src, uint32_t srcbits)
for (bit = 0; bit < srcbits; bit += 6) {
if (dstlen < 1) {
return NULL;
return NULL; /* LCOV_EXCL_LINE */
}
*dst++ = itoa64[src & 0x3f];
dstlen--;