[
https://issues.apache.org/jira/browse/TRAFODION-3238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16702529#comment-16702529
]
ASF GitHub Bot commented on TRAFODION-3238:
-------------------------------------------
Github user DaveBirdsall commented on a diff in the pull request:
https://github.com/apache/trafodion/pull/1750#discussion_r237304832
--- Diff: win-odbc64/security_dll/native/source/secpwd.cpp ---
@@ -217,8 +221,25 @@ SecPwd::SecPwd(const char *dir, const char* fileName,
if(stat(certDir,&st) != 0)
throw SecurityException(DIR_NOTFOUND, (char *)certDir);
- certFile = buildName(certDir, fileName, serverName, CER);
- activeCertFile = buildName(certDir, activeFileName, serverName,
ACTIVE_CER);
+ if (lcid == 0x804) // if local charset is not utf8
+ {
+ serverNameGBKToUtf8 = (char *)malloc(MAX_SQL_IDENTIFIER_LEN + 1);
--- End diff --
You use malloc to allocate this storage but delete to free it. This
behavior is undefined in general. It would be better to use free() to delete
it, or to use new instead of malloc.
> ODBC can not connect to server when the local language is gbk
> -------------------------------------------------------------
>
> Key: TRAFODION-3238
> URL: https://issues.apache.org/jira/browse/TRAFODION-3238
> Project: Apache Trafodion
> Issue Type: Bug
> Components: client-odbc-windows
> Affects Versions: any
> Reporter: XuWeixin
> Assignee: XuWeixin
> Priority: Major
> Fix For: 2.4
>
>
> # Set your current language used in non-unicode programs to GBK.
> # Create user name with chinese.
> # Test odbc.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)