Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
57686080
...
57686080827ba9d6705169e8708a7599ce81071f
authored
2003-05-26 09:58:10 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(_message_is_external_body): Check subtype before dereferencing it.
1 parent
ffa23160
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mh/mhn.c
mh/mhn.c
View file @
5768608
...
...
@@ -890,7 +890,7 @@ _message_is_external_body (message_t msg, char ***env)
return
0
;
_get_content_type
(
hdr
,
&
typestr
,
&
argstr
);
split_content
(
typestr
,
&
type
,
&
subtype
);
rc
=
strcmp
(
subtype
,
"external-body"
)
==
0
;
rc
=
s
ubtype
&&
s
trcmp
(
subtype
,
"external-body"
)
==
0
;
if
(
rc
&&
env
)
{
int
argc
;
...
...
Please
register
or
sign in
to post a comment