]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Zeroing memset() in opiechallenge() really is not needed because it is the
authorAndrey A. Chernov <ache@FreeBSD.org>
Thu, 24 Jan 2002 22:19:21 +0000 (22:19 +0000)
committerAndrey A. Chernov <ache@FreeBSD.org>
Thu, 24 Jan 2002 22:19:21 +0000 (22:19 +0000)
commit9df24552a085698e7f10f5c16d79829ee20fa15f
tree63c356d8d7ee1f7d99ca0ac8e1c742bef6bc3426
parent9118ec5a27abbbfa10e77acf45ecca7d13352eb7
Zeroing memset() in opiechallenge() really is not needed because it is the
very first thing immediately following opielookup() does being entered, i.e.
look at this:

int opielookup FUNCTION((opie, principal), struct opie *opie AND char
*principal
)
{
  int i;

  memset(opie, 0, sizeof(struct opie));
...
contrib/opie/libopie/challenge.c