[or-cvs] [tor/master] Fix a very stupid coverity complaint (CID 416).

Nick Mathewson nickm at seul.org
Tue Oct 27 02:40:45 UTC 2009


Author: Nick Mathewson <nickm at torproject.org>
Date: Mon, 26 Oct 2009 22:03:44 -0400
Subject: Fix a very stupid coverity complaint (CID 416).
Commit: 98cd8c5d167450733fcef804838919e528e13ad3

In its zeal to keep me from saying memset(x, '0', sizeof(x)), Coverity
disallows memset(x, 48, sizeof(x)).  Fine.  I'll choose a different
magic number, see if I care!
---
 src/test/test_dir.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/test/test_dir.c b/src/test/test_dir.c
index ca55c11..b7ee403 100644
--- a/src/test/test_dir.c
+++ b/src/test/test_dir.c
@@ -837,7 +837,7 @@ test_dir_v3_networkstatus(void)
   rs->published_on = now-1000;
   strlcpy(rs->nickname, "router4", sizeof(rs->nickname));
   memset(rs->identity_digest, 34, DIGEST_LEN);
-  memset(rs->descriptor_digest, 48, DIGEST_LEN);
+  memset(rs->descriptor_digest, 47, DIGEST_LEN);
   rs->addr = 0xC0000203;
   rs->or_port = 500;
   rs->dir_port = 1999;
-- 
1.5.6.5




More information about the tor-commits mailing list