Github user DaveBirdsall commented on a diff in the pull request:

    https://github.com/apache/incubator-trafodion/pull/257#discussion_r49367075
  
    --- Diff: core/sql/exp/exp_conv.cpp ---
    @@ -9321,6 +9321,32 @@ convDoIt(char * source,
       };
       break;
     
    +// gb2312 -> utf8
    +  case CONV_GBK_F_UTF8_V:
    +  {
    +    char * targetbuf = new char[sourceLen*4+1];
    +    size_t sl = sourceLen;
    +    int convLen = gbkToUtf8( source, sl, targetbuf, sl*4);
    +    int copyLen = 0;
    +    if (convLen > 0) {
    +      copyLen = (convLen< targetLen) ? convLen: targetLen;
    --- End diff --
    
    Might this truncate part of a UTF-8 character? I think there are already 
functions in the product that will copy UTF-8 strings safely without risk of 
truncation.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to