Bugzilla – Attachment 2379 Details for
Bug 2170
Potential integer overflow
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
improve diff (switch 1000 to ULL)
file_2170.txt (text/plain), 738 bytes, created by
Loganaden Velvindron
on 2013-12-02 07:18:50 AEDT
(
hide
)
Description:
improve diff (switch 1000 to ULL)
Filename:
MIME Type:
Creator:
Loganaden Velvindron
Created:
2013-12-02 07:18:50 AEDT
Size:
738 bytes
patch
obsolete
>Index: serverloop.c >=================================================================== >RCS file: /cvs/openssh/serverloop.c,v >retrieving revision 1.177 >diff -u -p -r1.177 serverloop.c >--- serverloop.c 18 Jul 2013 06:12:45 -0000 1.177 >+++ serverloop.c 1 Dec 2013 20:16:03 -0000 >@@ -304,7 +304,8 @@ wait_until_can_do_something(fd_set **rea > if (compat20 && > max_time_milliseconds == 0 && options.client_alive_interval) { > client_alive_scheduled = 1; >- max_time_milliseconds = options.client_alive_interval * 1000; >+ max_time_milliseconds = >+ (u_int64_t)options.client_alive_interval * 1000ULL; > } > > if (compat20) {
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 Raw
Actions:
View
Attachments on
bug 2170
:
2373
| 2379