Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
2ec0be9e
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
1 年多 前同步成功
通知
10
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看板
提交
2ec0be9e
编写于
4月 01, 2007
作者:
B
Ben Laurie
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Don't die if the value is NULL (Coverity CID 98).
上级
c2d1c2d3
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
12 addition
and
2 deletion
+12
-2
crypto/conf/conf.h
crypto/conf/conf.h
+2
-0
crypto/conf/conf_err.c
crypto/conf/conf_err.c
+3
-1
crypto/conf/conf_mod.c
crypto/conf/conf_mod.c
+7
-1
未找到文件。
crypto/conf/conf.h
浏览文件 @
2ec0be9e
...
...
@@ -214,6 +214,7 @@ void ERR_load_CONF_strings(void);
#define CONF_F_CONF_LOAD_BIO 102
#define CONF_F_CONF_LOAD_FP 103
#define CONF_F_CONF_MODULES_LOAD 116
#define CONF_F_CONF_PARSE_LIST 119
#define CONF_F_DEF_LOAD 120
#define CONF_F_DEF_LOAD_BIO 121
#define CONF_F_MODULE_INIT 115
...
...
@@ -233,6 +234,7 @@ void ERR_load_CONF_strings(void);
/* Reason codes. */
#define CONF_R_ERROR_LOADING_DSO 110
#define CONF_R_LIST_CANNOT_BE_NULL 115
#define CONF_R_MISSING_CLOSE_SQUARE_BRACKET 100
#define CONF_R_MISSING_EQUAL_SIGN 101
#define CONF_R_MISSING_FINISH_FUNCTION 111
...
...
crypto/conf/conf_err.c
浏览文件 @
2ec0be9e
/* crypto/conf/conf_err.c */
/* ====================================================================
* Copyright (c) 1999-200
6
The OpenSSL Project. All rights reserved.
* Copyright (c) 1999-200
7
The OpenSSL Project. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
...
...
@@ -75,6 +75,7 @@ static ERR_STRING_DATA CONF_str_functs[]=
{
ERR_FUNC
(
CONF_F_CONF_LOAD_BIO
),
"CONF_load_bio"
},
{
ERR_FUNC
(
CONF_F_CONF_LOAD_FP
),
"CONF_load_fp"
},
{
ERR_FUNC
(
CONF_F_CONF_MODULES_LOAD
),
"CONF_modules_load"
},
{
ERR_FUNC
(
CONF_F_CONF_PARSE_LIST
),
"CONF_parse_list"
},
{
ERR_FUNC
(
CONF_F_DEF_LOAD
),
"DEF_LOAD"
},
{
ERR_FUNC
(
CONF_F_DEF_LOAD_BIO
),
"DEF_LOAD_BIO"
},
{
ERR_FUNC
(
CONF_F_MODULE_INIT
),
"MODULE_INIT"
},
...
...
@@ -97,6 +98,7 @@ static ERR_STRING_DATA CONF_str_functs[]=
static
ERR_STRING_DATA
CONF_str_reasons
[]
=
{
{
ERR_REASON
(
CONF_R_ERROR_LOADING_DSO
)
,
"error loading dso"
},
{
ERR_REASON
(
CONF_R_LIST_CANNOT_BE_NULL
)
,
"list cannot be null"
},
{
ERR_REASON
(
CONF_R_MISSING_CLOSE_SQUARE_BRACKET
),
"missing close square bracket"
},
{
ERR_REASON
(
CONF_R_MISSING_EQUAL_SIGN
)
,
"missing equal sign"
},
{
ERR_REASON
(
CONF_R_MISSING_FINISH_FUNCTION
),
"missing finish function"
},
...
...
crypto/conf/conf_mod.c
浏览文件 @
2ec0be9e
...
...
@@ -581,8 +581,14 @@ int CONF_parse_list(const char *list_, int sep, int nospc,
{
int
ret
;
const
char
*
lstart
,
*
tmpend
,
*
p
;
lstart
=
list_
;
if
(
list_
==
NULL
)
{
CONFerr
(
CONF_F_CONF_PARSE_LIST
,
CONF_R_LIST_CANNOT_BE_NULL
);
return
0
;
}
lstart
=
list_
;
for
(;;)
{
if
(
nospc
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录