Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
b23f50e6
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
大约 1 年 前同步成功
通知
9
Star
18
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Openssl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
b23f50e6
编写于
7月 16, 2002
作者:
R
Richard Levitte
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Some older code (never committed) wasn't converted to the new format.
Corrected.
上级
7fe03ed3
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
4 addition
and
2 deletion
+4
-2
crypto/dso/dso.h
crypto/dso/dso.h
+1
-0
crypto/dso/dso_err.c
crypto/dso/dso_err.c
+1
-0
crypto/dso/dso_lib.c
crypto/dso/dso_lib.c
+2
-2
未找到文件。
crypto/dso/dso.h
浏览文件 @
b23f50e6
...
...
@@ -345,6 +345,7 @@ void ERR_load_DSO_strings(void);
#define DSO_R_LOAD_FAILED 103
#define DSO_R_NAME_TRANSLATION_FAILED 109
#define DSO_R_NO_FILENAME 111
#define DSO_R_NO_FILE_SPECIFICATION 116
#define DSO_R_NULL_HANDLE 104
#define DSO_R_SET_FILENAME_FAILED 112
#define DSO_R_STACK_ERROR 105
...
...
crypto/dso/dso_err.c
浏览文件 @
b23f50e6
...
...
@@ -116,6 +116,7 @@ static ERR_STRING_DATA DSO_str_reasons[]=
{
DSO_R_LOAD_FAILED
,
"could not load the shared library"
},
{
DSO_R_NAME_TRANSLATION_FAILED
,
"name translation failed"
},
{
DSO_R_NO_FILENAME
,
"no filename"
},
{
DSO_R_NO_FILE_SPECIFICATION
,
"no file specification"
},
{
DSO_R_NULL_HANDLE
,
"a null shared library handle was used"
},
{
DSO_R_SET_FILENAME_FAILED
,
"set filename failed"
},
{
DSO_R_STACK_ERROR
,
"the meth_data stack is corrupt"
},
...
...
crypto/dso/dso_lib.c
浏览文件 @
b23f50e6
...
...
@@ -394,7 +394,7 @@ char *DSO_merge(DSO *dso, const char *filespec1, const char *filespec2)
{
char
*
result
=
NULL
;
if
(
dso
==
NULL
||
dir
==
NULL
)
if
(
dso
==
NULL
||
filespec1
==
NULL
)
{
DSOerr
(
DSO_F_DSO_MERGE
,
ERR_R_PASSED_NULL_PARAMETER
);
return
(
NULL
);
...
...
@@ -403,7 +403,7 @@ char *DSO_merge(DSO *dso, const char *filespec1, const char *filespec2)
filespec1
=
dso
->
filename
;
if
(
filespec1
==
NULL
)
{
DSOerr
(
DSO_F_DSO_MERGE
,
DSO_R_NO_FILE
NAME
);
DSOerr
(
DSO_F_DSO_MERGE
,
DSO_R_NO_FILE
_SPECIFICATION
);
return
(
NULL
);
}
if
((
dso
->
flags
&
DSO_FLAG_NO_NAME_TRANSLATION
)
==
0
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录