Bugzilla – Attachment 1982 Details for
Bug 1849
Memory Leak in authmethod_get
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
SSH Memory Leak Patch
sshconnect2.c.diff (text/plain), 673 bytes, created by
David Gosselin
on 2011-01-23 23:55:59 AEDT
(
hide
)
Description:
SSH Memory Leak Patch
Filename:
MIME Type:
Creator:
David Gosselin
Created:
2011-01-23 23:55:59 AEDT
Size:
673 bytes
patch
obsolete
>--- openssh-5.6p1.orig/sshconnect2.c 2010-05-09 21:55:38.000000000 -0400 >+++ openssh-5.6p1/sshconnect2.c 2011-01-23 07:47:50.000000000 -0500 >@@ -1818,7 +1818,7 @@ > if ((name = match_list(preferred, supported, &next)) == NULL) { > debug("No more authentication methods to try."); > current = NULL; >- return NULL; >+ break; > } > preferred += next; > debug3("authmethod_lookup %s", name); >@@ -1827,9 +1827,12 @@ > authmethod_is_enabled(current)) { > debug3("authmethod_is_enabled %s", name); > debug("Next authentication method: %s", name); >- return current; >+ break; > } > } >+ >+ if (name != NULL) xfree(name); >+ return current; > } > > static char *
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 1849
: 1982