Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
f04fa735
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f04fa735
编写于
1月 26, 2015
作者:
I
igerasim
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8055045: StringIndexOutOfBoundsException while reading krb5.conf
Reviewed-by: mullan
上级
1c11b891
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
18 addition
and
5 deletion
+18
-5
src/share/classes/sun/security/krb5/Config.java
src/share/classes/sun/security/krb5/Config.java
+3
-3
test/sun/security/krb5/ParseConfig.java
test/sun/security/krb5/ParseConfig.java
+9
-2
test/sun/security/krb5/krb5.conf
test/sun/security/krb5/krb5.conf
+6
-0
未找到文件。
src/share/classes/sun/security/krb5/Config.java
浏览文件 @
f04fa735
...
@@ -763,9 +763,9 @@ public class Config {
...
@@ -763,9 +763,9 @@ public class Config {
private
static
String
trimmed
(
String
s
)
{
private
static
String
trimmed
(
String
s
)
{
s
=
s
.
trim
();
s
=
s
.
trim
();
if
(
s
.
isEmpty
())
return
s
;
if
(
s
.
length
()
>=
2
&&
if
(
s
.
charAt
(
0
)
==
'"'
&&
s
.
charAt
(
s
.
length
()-
1
)
==
'"'
||
((
s
.
charAt
(
0
)
==
'"'
&&
s
.
charAt
(
s
.
length
()-
1
)
==
'"'
)
||
s
.
charAt
(
0
)
==
'\''
&&
s
.
charAt
(
s
.
length
()-
1
)
==
'\''
)
{
(
s
.
charAt
(
0
)
==
'\''
&&
s
.
charAt
(
s
.
length
()-
1
)
==
'\''
))
)
{
s
=
s
.
substring
(
1
,
s
.
length
()-
1
).
trim
();
s
=
s
.
substring
(
1
,
s
.
length
()-
1
).
trim
();
}
}
return
s
;
return
s
;
...
...
test/sun/security/krb5/ParseConfig.java
浏览文件 @
f04fa735
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
*/
*/
/*
/*
* @test
* @test
* @bug 6319046
* @bug 6319046
8055045
* @compile -XDignore.symbol.file ParseConfig.java
* @compile -XDignore.symbol.file ParseConfig.java
* @run main/othervm ParseConfig
* @run main/othervm ParseConfig
* @summary Problem with parsing krb5.conf
* @summary Problem with parsing krb5.conf
...
@@ -32,7 +32,8 @@ import sun.security.krb5.Config;
...
@@ -32,7 +32,8 @@ import sun.security.krb5.Config;
public
class
ParseConfig
{
public
class
ParseConfig
{
public
static
void
main
(
String
[]
args
)
throws
Exception
{
public
static
void
main
(
String
[]
args
)
throws
Exception
{
System
.
setProperty
(
"java.security.krb5.conf"
,
System
.
getProperty
(
"test.src"
,
"."
)
+
"/krb5.conf"
);
System
.
setProperty
(
"java.security.krb5.conf"
,
System
.
getProperty
(
"test.src"
,
"."
)
+
"/krb5.conf"
);
Config
config
=
Config
.
getInstance
();
Config
config
=
Config
.
getInstance
();
config
.
listTable
();
config
.
listTable
();
...
@@ -44,5 +45,11 @@ public class ParseConfig {
...
@@ -44,5 +45,11 @@ public class ParseConfig {
expected
+
"\""
);
expected
+
"\""
);
}
}
}
}
// JDK-8055045: IOOBE when reading an empty value
config
.
get
(
"empty1"
,
"NOVAL.COM"
);
config
.
get
(
"empty2"
,
"NOVAL.COM"
);
config
.
get
(
"quote1"
,
"NOVAL.COM"
);
config
.
get
(
"quote2"
,
"NOVAL.COM"
);
}
}
}
}
test/sun/security/krb5/krb5.conf
浏览文件 @
f04fa735
...
@@ -27,3 +27,9 @@
...
@@ -27,3 +27,9 @@
}
}
}
}
NOVAL
.
COM
= {
empty1
=
empty2
=.
quote1
=
"
quote2
=
'
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录