FreeBSD Bugzilla – Attachment 165467 Details for
Bug 206177
Out-of-bounds read in wcsncat(3)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
wcsncat.patch (text/plain), 219 bytes, created by
Alexander Cherepanov
on 2016-01-12 22:40:10 UTC
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Alexander Cherepanov
Created:
2016-01-12 22:40:10 UTC
Size:
219 bytes
patch
obsolete
>--- wcsncat.c 2016-01-12 21:04:36.000000000 +0300 >+++ wcsncat-fixed.c 2016-01-12 21:06:10.000000000 +0300 >@@ -48,7 +48,7 @@ > p++; > q = p; > r = s2; >- while (*r && n) { >+ while (n && *r) { > *q++ = *r++; > n--; > }
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 206177
: 165467 |
165468