Bugzilla – Attachment 2362 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]
sshconnect.c.diff
file_2163.txt (text/plain), 669 bytes, created by
Loganaden Velvindron
on 2013-10-22 23:14:50 AEDT
(
hide
)
Description:
sshconnect.c.diff
Filename:
MIME Type:
Creator:
Loganaden Velvindron
Created:
2013-10-22 23:14:50 AEDT
Size:
669 bytes
patch
obsolete
>Index: sshconnect.c >=================================================================== >RCS file: /cvs/openssh/sshconnect.c,v >retrieving revision 1.214 >diff -u -p -r1.214 sshconnect.c >--- sshconnect.c 17 Oct 2013 00:47:24 -0000 1.214 >+++ sshconnect.c 21 Oct 2013 10:43:06 -0000 >@@ -276,7 +276,10 @@ ssh_create_socket(int privileged, struct > error("socket: %s", strerror(errno)); > return -1; > } >- fcntl(sock, F_SETFD, FD_CLOEXEC); >+ if (fcntl(sock, F_SETFD, FD_CLOEXEC) < 0) { >+ error("socket: %s", strerror(errno)); >+ return -1; >+ } > > /* Bind the socket to an alternative local IP address */ > if (options.bind_address == NULL && !privileged)
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
Flags:
dtucker
:
ok+
Actions:
View
|
Diff
Attachments on
bug 2163
:
2356
|
2357
|
2358
|
2359
|
2360
|
2361
| 2362 |
2363
|
2381