Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
a664c4c6
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看板
提交
a664c4c6
编写于
7月 23, 2010
作者:
U
uta
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6969851: VM hangs/crashes in FileDialog test (VS2008/2010 build)
Reviewed-by: prr, art
上级
08f5c35c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
21 addition
and
9 deletion
+21
-9
src/windows/native/sun/windows/awt.h
src/windows/native/sun/windows/awt.h
+21
-9
未找到文件。
src/windows/native/sun/windows/awt.h
浏览文件 @
a664c4c6
...
...
@@ -310,24 +310,32 @@ typedef JLocalRef<jclass> JLClass;
* Class to encapsulate the extraction of the java string contents
* into a buffer and the cleanup of the buffer
*/
class
JavaStringBuffer
class
JavaStringBuffer
{
protected:
LPWSTR
m_pStr
;
jsize
m_dwSize
;
LPWSTR
getNonEmptyString
()
{
return
(
NULL
==
m_pStr
)
?
L""
:
m_pStr
;
}
public:
JavaStringBuffer
(
jsize
cbTCharCount
)
{
m_dwSize
=
cbTCharCount
;
m_pStr
=
(
LPWSTR
)
safe_Malloc
(
(
m_dwSize
+
1
)
*
sizeof
(
WCHAR
)
);
m_pStr
=
(
0
==
m_dwSize
)
?
NULL
:
(
LPWSTR
)
safe_Malloc
(
(
m_dwSize
+
1
)
*
sizeof
(
WCHAR
)
);
}
JavaStringBuffer
(
JNIEnv
*
env
,
jstring
text
)
{
if
(
NULL
==
text
)
{
m_pStr
=
L""
;
m_dwSize
=
0
;
m_dwSize
=
(
NULL
==
text
)
?
0
:
env
->
GetStringLength
(
text
);
if
(
0
==
m_dwSize
)
{
m_pStr
=
NULL
;
}
else
{
m_dwSize
=
env
->
GetStringLength
(
text
);
m_pStr
=
(
LPWSTR
)
safe_Malloc
(
(
m_dwSize
+
1
)
*
sizeof
(
WCHAR
)
);
env
->
GetStringRegion
(
text
,
0
,
m_dwSize
,
reinterpret_cast
<
jchar
*>
(
m_pStr
));
m_pStr
[
m_dwSize
]
=
0
;
...
...
@@ -341,12 +349,16 @@ public:
void
Resize
(
jsize
cbTCharCount
)
{
m_dwSize
=
cbTCharCount
;
//It is ok to have non-null terminated string here.
//The function is used only for space reservation in staff buffer for
//followed data copying process. And that is the reason why we ignore
//the special case m_dwSize==0 here.
m_pStr
=
(
LPWSTR
)
safe_Realloc
(
m_pStr
,
(
m_dwSize
+
1
)
*
sizeof
(
WCHAR
)
);
}
//we are in UNICODE now, so LPWSTR:=:LPTSTR
operator
LPWSTR
()
{
return
m_pStr
;
}
operator
LPARAM
()
{
return
(
LPARAM
)
m_pStr
;
}
void
*
GetData
()
{
return
(
void
*
)
m_pStr
;
}
operator
LPWSTR
()
{
return
getNonEmptyString
()
;
}
operator
LPARAM
()
{
return
(
LPARAM
)
getNonEmptyString
()
;
}
void
*
GetData
()
{
return
(
void
*
)
getNonEmptyString
()
;
}
jsize
GetSize
()
{
return
m_dwSize
;
}
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录