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
6cd84cb1
...
6cd84cb1c8ff0fcc1d582db9b79930d2084c9483
authored
2003-11-04 14:32:35 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(rfc2047_decode): Bugfix.
1 parent
11d6f79f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/rfc2047.c
mailbox/rfc2047.c
View file @
6cd84cb
...
...
@@ -78,7 +78,7 @@ rfc2047_decode (const char *tocode, const char *input, char **ptostr)
fromcode
=
strtok_r
(
start_position
+
2
,
"?"
,
&
sp
);
encoding_type
=
strtok_r
(
NULL
,
"?"
,
&
sp
);
encoded_text
=
strtok_r
(
NULL
,
"?"
,
&
sp
);
if
(
sp
[
0
]
!=
'='
)
if
(
sp
==
NULL
||
sp
[
0
]
!=
'='
)
{
status
=
MU_ERR_BAD_2047_INPUT
;
break
;
...
...
Please
register
or
sign in
to post a comment