Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
acba3914
Q
qemu
项目概览
openeuler
/
qemu
通知
10
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
acba3914
编写于
10月 31, 2011
作者:
A
Anthony Liguori
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'alon/pull-libcacard-assert' into staging
上级
eca968d0
d9676f82
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
10 addition
and
4 deletion
+10
-4
libcacard/cac.c
libcacard/cac.c
+2
-1
libcacard/card_7816.c
libcacard/card_7816.c
+1
-1
libcacard/vscclient.c
libcacard/vscclient.c
+7
-2
未找到文件。
libcacard/cac.c
浏览文件 @
acba3914
...
...
@@ -266,7 +266,8 @@ static void
cac_delete_pki_applet_private
(
VCardAppletPrivate
*
applet_private
)
{
CACPKIAppletData
*
pki_applet_data
=
NULL
;
if
(
pki_applet_data
==
NULL
)
{
if
(
applet_private
==
NULL
)
{
return
;
}
pki_applet_data
=
&
(
applet_private
->
u
.
pki_data
);
...
...
libcacard/card_7816.c
浏览文件 @
acba3914
...
...
@@ -754,7 +754,7 @@ vcard_process_apdu(VCard *card, VCardAPDU *apdu, VCardResponse **response)
return
vcard7816_vm_process_apdu
(
card
,
apdu
,
response
);
case
VCARD_DIRECT
:
/* if we are type direct, then the applet should handle everything */
assert
(
"VCARD_DIRECT: applet failure"
);
assert
(
!
"VCARD_DIRECT: applet failure"
);
break
;
}
*
response
=
...
...
libcacard/vscclient.c
浏览文件 @
acba3914
...
...
@@ -357,6 +357,7 @@ connect_to_qemu(
if
(
sock
<
0
)
{
/* Error */
fprintf
(
stderr
,
"Error opening socket!
\n
"
);
return
-
1
;
}
memset
(
&
hints
,
0
,
sizeof
(
struct
addrinfo
));
...
...
@@ -370,13 +371,13 @@ connect_to_qemu(
if
(
ret
!=
0
)
{
/* Error */
fprintf
(
stderr
,
"getaddrinfo failed
\n
"
);
return
5
;
return
-
1
;
}
if
(
connect
(
sock
,
server
->
ai_addr
,
server
->
ai_addrlen
)
<
0
)
{
/* Error */
fprintf
(
stderr
,
"Could not connect
\n
"
);
return
5
;
return
-
1
;
}
if
(
verbose
)
{
printf
(
"Connected (sizeof Header=%zd)!
\n
"
,
sizeof
(
VSCMsgHeader
));
...
...
@@ -505,6 +506,10 @@ main(
qemu_host
=
strdup
(
argv
[
argc
-
2
]);
qemu_port
=
strdup
(
argv
[
argc
-
1
]);
sock
=
connect_to_qemu
(
qemu_host
,
qemu_port
);
if
(
sock
==
-
1
)
{
fprintf
(
stderr
,
"error opening socket, exiting.
\n
"
);
exit
(
5
);
}
qemu_mutex_init
(
&
write_lock
);
qemu_mutex_init
(
&
pending_reader_lock
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录