Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
288c6257
提交
288c6257
authored
8月 28, 2015
作者:
Mike Jerris
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
FS-7966: fix more warnings in msvc 2015 build
上级
4d16691a
隐藏空白字符变更
内嵌
并排
正在显示
12 个修改的文件
包含
51 行增加
和
26 行删除
+51
-26
esl_event.c
libs/esl/src/esl_event.c
+9
-0
natpmp.c
libs/libnatpmp/natpmp.c
+4
-0
mod_spandsp.2015.vcxproj
src/mod/applications/mod_spandsp/mod_spandsp.2015.vcxproj
+4
-4
mod_valet_parking.2015.vcxproj
...ications/mod_valet_parking/mod_valet_parking.2015.vcxproj
+4
-0
mod_voicemail.c
src/mod/applications/mod_voicemail/mod_voicemail.c
+8
-11
mod_skypopen.2015.vcxproj
src/mod/endpoints/mod_skypopen/mod_skypopen.2015.vcxproj
+4
-4
skypopen_protocol.c
src/mod/endpoints/mod_skypopen/skypopen_protocol.c
+2
-2
mod_verto.2015.vcxproj
src/mod/endpoints/mod_verto/mod_verto.2015.vcxproj
+6
-1
ws.c
src/mod/endpoints/mod_verto/ws.c
+1
-1
mod_say_zh.2015.vcxproj
src/mod/say/mod_say_zh/mod_say_zh.2015.vcxproj
+4
-0
mod_xml_rpc.c
src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c
+2
-2
ws.c
src/mod/xml_int/mod_xml_rpc/ws.c
+3
-1
没有找到文件。
libs/esl/src/esl_event.c
浏览文件 @
288c6257
...
...
@@ -508,6 +508,11 @@ static esl_status_t esl_event_base_add_header(esl_event_t *event, esl_stack_t st
header
=
new_header
(
header_name
);
}
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable : 6385 6386)
#endif
if
((
stack
&
ESL_STACK_PUSH
)
||
(
stack
&
ESL_STACK_UNSHIFT
))
{
char
**
m
=
NULL
;
esl_size_t
len
=
0
;
...
...
@@ -546,6 +551,10 @@ static esl_status_t esl_event_base_add_header(esl_event_t *event, esl_stack_t st
len
+=
strlen
(
header
->
array
[
j
])
+
2
;
}
#ifdef _MSC_VER
#pragma warning(pop)
#endif
if
(
len
)
{
len
+=
8
;
hv
=
realloc
(
header
->
value
,
len
);
...
...
libs/libnatpmp/natpmp.c
浏览文件 @
288c6257
...
...
@@ -29,8 +29,12 @@
#include <winsock2.h>
#include <Ws2tcpip.h>
#include <io.h>
#ifndef EWOULDBLOCK
#define EWOULDBLOCK WSAEWOULDBLOCK
#endif
#ifndef ECONNREFUSED
#define ECONNREFUSED WSAECONNREFUSED
#endif
static
int
gettimeofday
(
struct
timeval
*
p
,
void
*
tz
/* IGNORED */
)
{
union
{
...
...
src/mod/applications/mod_spandsp/mod_spandsp.2015.vcxproj
浏览文件 @
288c6257
...
...
@@ -89,7 +89,7 @@
<AdditionalIncludeDirectories>
%(RootDir)%(Directory)..\..\..\..\libs\spandsp\src\msvc;%(RootDir)%(Directory)..\..\..\..\libs\spandsp\src;%(RootDir)%(Directory)..\..\..\..\libs\tiff-4.0.2\libtiff;%(RootDir)%(Directory)..\..\..\..\libs\jpeg-8d;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
<PrecompiledHeader>
</PrecompiledHeader>
<DisableSpecificWarnings>
4024;4047;4324;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
<DisableSpecificWarnings>
6031;4456;
4024;4047;4324;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
<EnablePREfast>
false
</EnablePREfast>
</ClCompile>
<Link>
...
...
@@ -107,7 +107,7 @@
<AdditionalIncludeDirectories>
%(RootDir)%(Directory)..\..\..\..\libs\spandsp\src\msvc;%(RootDir)%(Directory)..\..\..\..\libs\spandsp\src;%(RootDir)%(Directory)..\..\..\..\libs\tiff-4.0.2\libtiff;%(RootDir)%(Directory)..\..\..\..\libs\jpeg-8d;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
<PrecompiledHeader>
</PrecompiledHeader>
<DisableSpecificWarnings>
4024;4047;4324;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
<DisableSpecificWarnings>
6031;4456;
4024;4047;4324;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
<EnablePREfast>
false
</EnablePREfast>
</ClCompile>
<Link>
...
...
@@ -123,7 +123,7 @@
<AdditionalIncludeDirectories>
%(RootDir)%(Directory)..\..\..\..\libs\spandsp\src\msvc;%(RootDir)%(Directory)..\..\..\..\libs\spandsp\src;%(RootDir)%(Directory)..\..\..\..\libs\tiff-4.0.2\libtiff;%(RootDir)%(Directory)..\..\..\..\libs\jpeg-8d;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
<PrecompiledHeader>
</PrecompiledHeader>
<DisableSpecificWarnings>
4024;4047;4324;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
<DisableSpecificWarnings>
6031;4456;
4024;4047;4324;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
<EnablePREfast>
false
</EnablePREfast>
</ClCompile>
<Link>
...
...
@@ -141,7 +141,7 @@
<AdditionalIncludeDirectories>
%(RootDir)%(Directory)..\..\..\..\libs\spandsp\src\msvc;%(RootDir)%(Directory)..\..\..\..\libs\spandsp\src;%(RootDir)%(Directory)..\..\..\..\libs\tiff-4.0.2\libtiff;%(RootDir)%(Directory)..\..\..\..\libs\jpeg-8d;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
<PrecompiledHeader>
</PrecompiledHeader>
<DisableSpecificWarnings>
4024;4047;4324;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
<DisableSpecificWarnings>
6031;4456;
4024;4047;4324;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
<EnablePREfast>
false
</EnablePREfast>
</ClCompile>
<Link>
...
...
src/mod/applications/mod_valet_parking/mod_valet_parking.2015.vcxproj
浏览文件 @
288c6257
...
...
@@ -72,6 +72,7 @@
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<DisableSpecificWarnings>
4456;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
</ClCompile>
<Link>
<RandomizedBaseAddress>
false
</RandomizedBaseAddress>
...
...
@@ -86,6 +87,7 @@
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<DisableSpecificWarnings>
4456;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
</ClCompile>
<Link>
<RandomizedBaseAddress>
false
</RandomizedBaseAddress>
...
...
@@ -98,6 +100,7 @@
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<DisableSpecificWarnings>
4456;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
</ClCompile>
<Link>
<RandomizedBaseAddress>
false
</RandomizedBaseAddress>
...
...
@@ -112,6 +115,7 @@
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<DisableSpecificWarnings>
4456;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
</ClCompile>
<Link>
<RandomizedBaseAddress>
false
</RandomizedBaseAddress>
...
...
src/mod/applications/mod_voicemail/mod_voicemail.c
浏览文件 @
288c6257
...
...
@@ -3083,11 +3083,8 @@ static switch_status_t deliver_vm(vm_profile_t *profile,
}
}
if
(
session
)
{
switch_channel_t
*
channel
=
switch_core_session_get_channel
(
session
);
if
(
channel
&&
(
vm_switch_cc_tmp
=
switch_channel_get_variable
(
channel
,
"vm_cc"
)))
{
vm_cc
=
vm_switch_cc_tmp
;
}
if
(
channel
&&
(
vm_switch_cc_tmp
=
switch_channel_get_variable
(
channel
,
"vm_cc"
)))
{
vm_cc
=
vm_switch_cc_tmp
;
}
if
(
vm_cc
)
{
...
...
@@ -4283,7 +4280,7 @@ static int web_callback(void *pArg, int argc, char **argv, char **columnNames)
char
*
del
,
*
get
,
*
fname
,
*
ext
;
switch_time_exp_t
tm
;
char
create_date
[
80
]
=
""
;
char
read_date
[
80
]
=
""
;
char
read_date
[
80
]
=
{
0
}
;
char
rss_date
[
80
]
=
""
;
switch_size_t
retsize
;
switch_time_t
l_created
=
0
;
...
...
@@ -4370,8 +4367,8 @@ static int rss_callback(void *pArg, int argc, char **argv, char **columnNames)
char
*
tmp
,
*
del
,
*
get
;
switch_time_exp_t
tm
;
char
create_date
[
80
]
=
""
;
char
read_date
[
80
]
=
""
;
char
rss_date
[
80
]
=
""
;
char
read_date
[
80
]
=
{
0
}
;
char
rss_date
[
80
]
=
{
0
}
;
switch_size_t
retsize
;
const
char
*
mime_type
=
"audio/inline"
,
*
new_type
;
char
*
ext
;
...
...
@@ -5836,7 +5833,7 @@ SWITCH_STANDARD_API(vm_fsdb_msg_forward_function)
file_path
=
switch_event_get_header
(
cbt
.
my_params
,
"VM-Message-File-Path"
);
if
(
file_path
&&
switch_file_exists
(
file_path
,
pool
)
==
SWITCH_STATUS_SUCCESS
)
{
const
char
*
new_file_path
=
file_path
;
const
char
*
c
m
d
=
NULL
;
const
char
*
c
omman
d
=
NULL
;
if
(
prepend_file_path
&&
switch_file_exists
(
prepend_file_path
,
pool
)
==
SWITCH_STATUS_SUCCESS
)
{
...
...
@@ -5859,8 +5856,8 @@ SWITCH_STANDARD_API(vm_fsdb_msg_forward_function)
}
}
c
m
d
=
switch_core_sprintf
(
pool
,
"%s@%s %s %s '%s'"
,
dst_id
,
dst_domain
,
new_file_path
,
switch_event_get_header
(
cbt
.
my_params
,
"VM-Message-Caller-Number"
),
switch_event_get_header
(
cbt
.
my_params
,
"VM-Message-Caller-Name"
));
if
(
voicemail_inject
(
c
m
d
,
NULL
)
==
SWITCH_STATUS_SUCCESS
)
{
c
omman
d
=
switch_core_sprintf
(
pool
,
"%s@%s %s %s '%s'"
,
dst_id
,
dst_domain
,
new_file_path
,
switch_event_get_header
(
cbt
.
my_params
,
"VM-Message-Caller-Number"
),
switch_event_get_header
(
cbt
.
my_params
,
"VM-Message-Caller-Name"
));
if
(
voicemail_inject
(
c
omman
d
,
NULL
)
==
SWITCH_STATUS_SUCCESS
)
{
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_NOTICE
,
"Sent Carbon Copy to %s@%s
\n
"
,
dst_id
,
dst_domain
);
}
else
{
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_ERROR
,
"Failed to Carbon Copy to %s@%s
\n
"
,
dst_id
,
dst_domain
);
...
...
src/mod/endpoints/mod_skypopen/mod_skypopen.2015.vcxproj
浏览文件 @
288c6257
...
...
@@ -75,7 +75,7 @@
</PrecompiledHeader>
<WarningLevel>
Level4
</WarningLevel>
<TreatWarningAsError>
false
</TreatWarningAsError>
<DisableSpecificWarnings>
4324;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
<DisableSpecificWarnings>
4
456;6031;4
324;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
</ClCompile>
<Link>
<AdditionalOptions>
rpcrt4.lib "..\..\..\..\libs\spandsp\src\Win32\Debug\libtiff.lib" "..\..\..\..\Win32\Debug\libspandsp.lib" %(AdditionalOptions)
</AdditionalOptions>
...
...
@@ -91,7 +91,7 @@
</PrecompiledHeader>
<WarningLevel>
Level4
</WarningLevel>
<TreatWarningAsError>
false
</TreatWarningAsError>
<DisableSpecificWarnings>
4324;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
<DisableSpecificWarnings>
4
456;6031;4
324;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
</ClCompile>
<Link>
<AdditionalOptions>
rpcrt4.lib "..\..\..\..\libs\spandsp\src\x64\Debug\libtiff.lib" "..\..\..\..\x64\Debug\libspandsp.lib" %(AdditionalOptions)
</AdditionalOptions>
...
...
@@ -105,7 +105,7 @@
<AdditionalIncludeDirectories>
%(RootDir)%(Directory)..\..\..\..\libs\spandsp\src\msvc;%(RootDir)%(Directory)..\..\..\..\libs\spandsp\src;%(RootDir)%(Directory)..\..\..\..\libs\tiff-4.0.2\libtiff;%(RootDir)%(Directory)..\..\..\..\libs\jpeg-8d;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
<PrecompiledHeader>
</PrecompiledHeader>
<DisableSpecificWarnings>
4324;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
<DisableSpecificWarnings>
4
456;6031;4
324;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
</ClCompile>
<Link>
<AdditionalOptions>
rpcrt4.lib "..\..\..\..\libs\spandsp\src\Win32\Release\libtiff.lib" "..\..\..\..\Win32\Release\libspandsp.lib" %(AdditionalOptions)
</AdditionalOptions>
...
...
@@ -119,7 +119,7 @@
<AdditionalIncludeDirectories>
%(RootDir)%(Directory)..\..\..\..\libs\spandsp\src\msvc;%(RootDir)%(Directory)..\..\..\..\libs\spandsp\src;%(RootDir)%(Directory)..\..\..\..\libs\tiff-4.0.2\libtiff;%(RootDir)%(Directory)..\..\..\..\libs\jpeg-8d;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
<PrecompiledHeader>
</PrecompiledHeader>
<DisableSpecificWarnings>
4324;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
<DisableSpecificWarnings>
4
456;6031;4
324;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
</ClCompile>
<Link>
<AdditionalOptions>
rpcrt4.lib "..\..\..\..\libs\spandsp\src\x64\Release\libtiff.lib" "..\..\..\..\x64\Release\libspandsp.lib" %(AdditionalOptions)
</AdditionalOptions>
...
...
src/mod/endpoints/mod_skypopen/skypopen_protocol.c
浏览文件 @
288c6257
...
...
@@ -1466,7 +1466,7 @@ LRESULT APIENTRY skypopen_present(HWND hWindow, UINT uiMessage, WPARAM uiParam,
lReturnCode
=
0
;
fIssueDefProc
=
0
;
tech_pvt
=
(
private_t
*
)
GetWindowLong
(
hWindow
,
GWLP_USERDATA
);
tech_pvt
=
(
private_t
*
)
(
intptr_t
)
GetWindowLong
(
hWindow
,
GWLP_USERDATA
);
if
(
!
running
)
{
DEBUGA_SKYPE
(
"let's DIE!
\n
"
,
SKYPOPEN_P_LOG
);
...
...
@@ -1477,7 +1477,7 @@ LRESULT APIENTRY skypopen_present(HWND hWindow, UINT uiMessage, WPARAM uiParam,
switch
(
uiMessage
)
{
case
WM_CREATE
:
tech_pvt
=
(
private_t
*
)
((
LPCREATESTRUCT
)
ulParam
)
->
lpCreateParams
;
SetWindowLong
(
hWindow
,
GWLP_USERDATA
,
(
LONG
)
tech_pvt
);
SetWindowLong
(
hWindow
,
GWLP_USERDATA
,
(
LONG
)
(
intptr_t
)
tech_pvt
);
DEBUGA_SKYPE
(
"got CREATE
\n
"
,
SKYPOPEN_P_LOG
);
break
;
case
WM_DESTROY
:
...
...
src/mod/endpoints/mod_verto/mod_verto.2015.vcxproj
浏览文件 @
288c6257
...
...
@@ -138,7 +138,12 @@
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile
Include=
"mod_verto.c"
/>
<ClCompile
Include=
"ws.c"
/>
<ClCompile
Include=
"ws.c"
>
<DisableSpecificWarnings
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
6386;4267;4244;6031;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
<DisableSpecificWarnings
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
6386;4267;4244;6031;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
<DisableSpecificWarnings
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
6386;4267;4244;6031;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
<DisableSpecificWarnings
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
>
6386;4267;4244;6031;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
</ClCompile>
<ClCompile
Include=
"mcast\mcast.c"
/>
<ClCompile
Include=
"mcast\mcast_cpp.cpp"
/>
</ItemGroup>
...
...
src/mod/endpoints/mod_verto/ws.c
浏览文件 @
288c6257
...
...
@@ -146,7 +146,7 @@ static int cheezy_get_var(char *data, char *name, char *buf, size_t buflen)
}
while
((
p
=
(
strstr
(
p
,
"
\n
"
)
+
1
))
!=
(
char
*
)
1
);
if
(
p
!=
(
char
*
)
1
&&
*
p
!=
'\0'
)
{
if
(
p
&&
p
!=
(
char
*
)
1
&&
*
p
!=
'\0'
)
{
char
*
v
,
*
e
=
0
;
v
=
strchr
(
p
,
':'
);
...
...
src/mod/say/mod_say_zh/mod_say_zh.2015.vcxproj
浏览文件 @
288c6257
...
...
@@ -72,6 +72,7 @@
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<DisableSpecificWarnings>
6031;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
</ClCompile>
<Link>
<RandomizedBaseAddress>
false
</RandomizedBaseAddress>
...
...
@@ -86,6 +87,7 @@
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<DisableSpecificWarnings>
6031;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
</ClCompile>
<Link>
<RandomizedBaseAddress>
false
</RandomizedBaseAddress>
...
...
@@ -98,6 +100,7 @@
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<DisableSpecificWarnings>
6031;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
</ClCompile>
<Link>
<RandomizedBaseAddress>
false
</RandomizedBaseAddress>
...
...
@@ -112,6 +115,7 @@
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<DisableSpecificWarnings>
6031;6340;6246;6011;6387;%(DisableSpecificWarnings)
</DisableSpecificWarnings>
</ClCompile>
<Link>
<RandomizedBaseAddress>
false
</RandomizedBaseAddress>
...
...
src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c
浏览文件 @
288c6257
...
...
@@ -632,9 +632,9 @@ abyss_bool websocket_hook(TSession *r)
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_ERROR
,
"continue
\n
"
);
continue
;
case
WSOC_TEXT
:
p
=
data
;
p
=
(
char
*
)
data
;
if
(
!
p
)
continue
;
if
(
!
strncasecmp
(
data
,
"event "
,
6
))
{
if
(
!
strncasecmp
(
(
char
*
)
data
,
"event "
,
6
))
{
switch_event_types_t
type
;
char
*
subclass
;
...
...
src/mod/xml_int/mod_xml_rpc/ws.c
浏览文件 @
288c6257
...
...
@@ -406,10 +406,12 @@ issize_t ws_read_frame(wsh_t *wsh, ws_opcode_t *oc, uint8_t **data)
if
((
wsh
->
datalen
=
ws_raw_read
(
wsh
,
wsh
->
buffer
,
14
))
<
need
)
{
while
(
!
wsh
->
down
&&
(
wsh
->
datalen
+=
ws_raw_read
(
wsh
,
wsh
->
buffer
+
wsh
->
datalen
,
14
-
wsh
->
datalen
))
<
need
)
;
#if 0
if (0 && (wsh->datalen += ws_raw_read(wsh, wsh->buffer + wsh->datalen, 14 - wsh->datalen)) < need) {
/* too small - protocol err */
return ws_close(wsh, WS_PROTO_ERR);
}
#endif
}
*
oc
=
*
wsh
->
buffer
&
0xf
;
...
...
@@ -600,7 +602,7 @@ issize_t ws_write_frame(wsh_t *wsh, ws_opcode_t oc, void *data, size_t bytes)
hlen
+=
8
;
u64
=
(
uint64_t
*
)
&
hdr
[
2
];
*
u64
=
htonl
(
bytes
);
*
u64
=
htonl
(
(
unsigned
long
)
bytes
);
}
if
(
ws_raw_write
(
wsh
,
(
void
*
)
&
hdr
[
0
],
hlen
)
!=
(
issize_t
)
hlen
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论