Merge pull request #669 from floe/master

Fix for issue #656 - invalid free() in NTLM
This commit is contained in:
Marc-André Moreau 2012-07-26 07:34:39 -07:00
commit 7e62beeb91
1 changed files with 1 additions and 1 deletions

View File

@ -360,6 +360,6 @@ void ntlm_construct_authenticate_target_info(NTLM_CONTEXT* context)
NTLM_AV_PAIR* AvEOL;
AvEOL = ntlm_av_pair_get(ChallengeTargetInfo, MsvAvEOL);
ZeroMemory((void*) AvEOL, 12);
ZeroMemory((void*) AvEOL, 4);
}
}