Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell11
提交
bdad3120
D
dragonwell11
项目概览
openanolis
/
dragonwell11
通知
7
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell11
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
bdad3120
编写于
7月 05, 2017
作者:
D
duke
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
76ba969b
e4b70737
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
6 addition
and
3 deletion
+6
-3
.hgtags-top-repo
.hgtags-top-repo
+1
-0
hotspot/.hgtags
hotspot/.hgtags
+1
-0
jdk/.hgtags
jdk/.hgtags
+1
-0
jdk/src/windows/native/sun/jkernel/kernel.cpp
jdk/src/windows/native/sun/jkernel/kernel.cpp
+3
-3
未找到文件。
.hgtags-top-repo
浏览文件 @
bdad3120
...
...
@@ -42,3 +42,4 @@ c7ed15ab92ce36a09d264a5e34025884b2d7607f jdk7-b62
e01380cd1de4ce048b87d059d238e5ab5e341947 jdk7-b65
6bad5e3fe50337d95b1416d744780d65bc570da6 jdk7-b66
c4523c6f82048f420bf0d57c4cd47976753b7d2c jdk7-b67
e1b972ff53cd58f825791f8ed9b2deffd16e768c jdk7-b68
hotspot/.hgtags
浏览文件 @
bdad3120
...
...
@@ -42,3 +42,4 @@ ba36394eb84b949b31212bdb32a518a8f92bab5b jdk7-b64
ba313800759b678979434d6da8ed3bf49eb8bea4 jdk7-b65
57c71ad0341b8b64ed20f81151eb7f06324f8894 jdk7-b66
18f526145aea355a9320b724373386fc2170f183 jdk7-b67
d07e68298d4e17ebf93d8299e43fcc3ded26472a jdk7-b68
jdk/.hgtags
浏览文件 @
bdad3120
...
...
@@ -42,3 +42,4 @@ a50217eb3ee10b9f9547e0708e5c9625405083ef jdk7-b64
382a27aa78d3236fa123c60577797a887fe93e09 jdk7-b65
bd31b30a5b21f20e42965b1633f18a5c7946d398 jdk7-b66
a952aafd5181af953b0ef3010dbd2fcc28460e8a jdk7-b67
b23d905cb5d3b382295240d28ab0bfb266b4503c jdk7-b68
jdk/src/windows/native/sun/jkernel/kernel.cpp
浏览文件 @
bdad3120
...
...
@@ -116,11 +116,11 @@ char* getStringPlatformChars(JNIEnv* env, jstring jstr) {
char
*
result
=
NULL
;
size_t
len
;
const
jchar
*
utf16
=
env
->
GetStringChars
(
jstr
,
NULL
);
len
=
wcstombs
(
NULL
,
utf16
,
env
->
GetStringLength
(
jstr
)
*
4
)
+
1
;
len
=
wcstombs
(
NULL
,
(
const
wchar_t
*
)
utf16
,
env
->
GetStringLength
(
jstr
)
*
4
)
+
1
;
if
(
len
==
-
1
)
return
NULL
;
result
=
(
char
*
)
malloc
(
len
);
if
(
wcstombs
(
result
,
utf16
,
len
)
==
-
1
)
if
(
wcstombs
(
result
,
(
const
wchar_t
*
)
utf16
,
len
)
==
-
1
)
return
NULL
;
env
->
ReleaseStringChars
(
jstr
,
utf16
);
return
result
;
...
...
@@ -640,7 +640,7 @@ JNIEXPORT void JNICALL Java_sun_jkernel_DownloadManager_startBackgroundDownloadW
}
void
getParent
(
const
TCHAR
*
path
,
TCHAR
*
dest
)
{
void
getParent
(
TCHAR
*
path
,
TCHAR
*
dest
)
{
char
*
lastSlash
=
max
(
strrchr
(
path
,
'\\'
),
strrchr
(
path
,
'/'
));
if
(
lastSlash
==
NULL
)
{
*
dest
=
NULL
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录