You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by "Sean Busbey (JIRA)" <ji...@apache.org> on 2015/07/09 20:36:04 UTC

[jira] [Updated] (AVRO-1698) cant serialize json with characters >127 when compiling with signed char

     [ https://issues.apache.org/jira/browse/AVRO-1698?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sean Busbey updated AVRO-1698:
------------------------------
    Status: Patch Available  (was: Open)

> cant serialize json with characters >127 when compiling with signed char
> ------------------------------------------------------------------------
>
>                 Key: AVRO-1698
>                 URL: https://issues.apache.org/jira/browse/AVRO-1698
>             Project: Avro
>          Issue Type: Bug
>          Components: c++
>    Affects Versions: 1.7.7
>         Environment: windows, linux w signed char
>            Reporter: svante karlsson
>         Attachments: AVRO-1698.1.patch
>
>
> iscntrl assumes 0-255 but signed char gets expanded to bad things
> pullreq #38  on github solves the issue.
> change line 196 lang/c++/impl/json/JsonIO.hh
> from 
>   if (! iscntrl(*p)) {
> to
>  if (! iscntrl((uint8_t) *p)) {



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)