diff options
author | Nick Mathewson <nickm@torproject.org> | 2009-01-04 19:47:21 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2009-01-04 19:47:21 +0000 |
commit | 92ce533f71428c324cadcd4e8feae933a8622a81 (patch) | |
tree | 3906afce8c442fa61420d8f9844b3b77c98bbd9a /src/or/test.c | |
parent | 9c94b428d9f30f1c5a493856cfea293c634a3c9f (diff) | |
download | tor-92ce533f71428c324cadcd4e8feae933a8622a81.tar.gz tor-92ce533f71428c324cadcd4e8feae933a8622a81.zip |
Another round of downgrading removing or postponing XXXX021 issues. Some remain, though.
svn:r17888
Diffstat (limited to 'src/or/test.c')
-rw-r--r-- | src/or/test.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/test.c b/src/or/test.c index cf33840264..511e8c2329 100644 --- a/src/or/test.c +++ b/src/or/test.c @@ -4338,8 +4338,9 @@ test_crypto_aes_iv(void) crypto_free_cipher_env(cipher); cipher = NULL; test_eq(encrypted_size, 16 + 1); - tor_assert(encrypted_size > 0); /*XXXX021 Obviously this is true. But does - * this make Coverity happy? */ + tor_assert(encrypted_size > 0); /* This is obviously true, since 17 is + * greater than 0, but its truth is not + * obvious to all analysis tools. */ cipher = crypto_create_init_cipher(key1, 0); decrypted_size = crypto_cipher_decrypt_with_iv(cipher, decrypted1, 1, encrypted1, encrypted_size); |