Bugzilla – Attachment 2256 Details for
Bug 2100
Missing dereference when bzeroing unused identities
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Fix size passed to bzero
bzero-dereference.patch (text/plain), 564 bytes, created by
Colin Watson
on 2013-05-09 18:45:19 AEST
(
hide
)
Description:
Fix size passed to bzero
Filename:
MIME Type:
Creator:
Colin Watson
Created:
2013-05-09 18:45:19 AEST
Size:
564 bytes
patch
obsolete
>Index: sshconnect2.c >=================================================================== >RCS file: /cvs/openssh/sshconnect2.c,v >retrieving revision 1.187 >diff -p -u -r1.187 sshconnect2.c >--- sshconnect2.c 23 Apr 2013 05:18:52 -0000 1.187 >+++ sshconnect2.c 9 May 2013 08:44:38 -0000 >@@ -1409,7 +1409,7 @@ pubkey_prepare(Authctxt *authctxt) > /* If IdentitiesOnly set and key not found then don't use it */ > if (!found && options.identities_only) { > TAILQ_REMOVE(&files, id, next); >- bzero(id, sizeof(id)); >+ bzero(id, sizeof(*id)); > free(id); > } > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 2100
: 2256