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
3e239111
...
3e239111af0d118f5acd4477a069599135e090f3
authored
2006-02-17 11:32:44 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu_rfc2047_encode): Return EINVAL if any of
the arguments is NULL.
1 parent
4a1df226
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/rfc2047.c
mailbox/rfc2047.c
View file @
3e23911
...
...
@@ -231,7 +231,7 @@ mu_rfc2047_encode (const char *charset, const char *encoding,
int
rc
;
if
(
charset
==
NULL
||
encoding
==
NULL
||
text
==
NULL
)
return
MU_ERR_BAD_2047_INPUT
;
return
EINVAL
;
if
(
strcmp
(
encoding
,
"base64"
)
==
0
)
encoding
=
"B"
;
...
...
Please
register
or
sign in
to post a comment