Bugzilla – Attachment 3465 Details for
Bug 3250
Integer overflow in ConnectTimeout
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed Patch
ssh_proposed_patch.patch (text/plain), 298 bytes, created by
Davide Berardi
on 2021-01-10 20:04:05 AEDT
(
hide
)
Description:
Proposed Patch
Filename:
MIME Type:
Creator:
Davide Berardi
Created:
2021-01-10 20:04:05 AEDT
Size:
298 bytes
patch
obsolete
>--- a/readconf.c >+++ b/readconf.c >@@ -975,7 +975,7 @@ parse_time: > } > if (strcmp(arg, "none") == 0) > value = -1; >- else if ((value = convtime(arg)) == -1) { >+ else if ((value = convtime(arg)) <= -1) { > error("%s line %d: invalid time value.", > filename, linenum); > return -1;
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 3250
:
3465
|
3466