Bugzilla – Attachment 2357 Details for
Bug 2163
unchecked returned value from pam_get_item()
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
sftp.c.diff
file_2163.txt (text/plain), 590 bytes, created by
Loganaden Velvindron
on 2013-10-22 23:09:23 AEDT
(
hide
)
Description:
sftp.c.diff
Filename:
MIME Type:
Creator:
Loganaden Velvindron
Created:
2013-10-22 23:09:23 AEDT
Size:
590 bytes
patch
obsolete
>Index: sftp.c >=================================================================== >RCS file: /cvs/openssh/sftp.c,v >retrieving revision 1.170 >diff -u -p -r1.170 sftp.c >--- sftp.c 17 Oct 2013 23:17:18 -0000 1.170 >+++ sftp.c 21 Oct 2013 12:17:08 -0000 >@@ -771,8 +771,10 @@ do_ls_dir(struct sftp_conn *conn, char * > u_int c = 1, colspace = 0, columns = 1; > SFTP_DIRENT **d; > >- if ((n = do_readdir(conn, path, &d)) != 0) >+ if ((n = do_readdir(conn, path, &d)) != 0) { >+ free_sftp_dirents(d); > return (n); >+ } > > if (!(lflag & LS_SHORT_VIEW)) { > u_int m = 0, width = 80;
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 2163
:
2356
|
2357
|
2358
|
2359
|
2360
|
2361
|
2362
|
2363
|
2381