FreeBSD Bugzilla – Attachment 165487 Details for
Bug 202290
/usr/bin/vi conversion error on valid character
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
correct patch
nvi.patch (text/plain), 378 bytes, created by
lampa
on 2016-01-13 09:51:50 UTC
(
hide
)
Description:
correct patch
Filename:
MIME Type:
Creator:
lampa
Created:
2016-01-13 09:51:50 UTC
Size:
378 bytes
patch
obsolete
>Index: contrib/nvi/common/encoding.c >=================================================================== >--- contrib/nvi/common/encoding.c (revision 292832) >+++ contrib/nvi/common/encoding.c (working copy) >@@ -96,7 +96,7 @@ > if (i >= nbytes) > goto done; > >- if (buf[i] & 0x40) /* 10xxxxxx */ >+ if ((buf[i] & 0xc0) != 0x80) /* 10xxxxxx */ > 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 202290
:
165486
| 165487 |
214569