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
72a838b1
...
72a838b15876f49d3b78a57e4aa42338a1f8bedb
authored
2002-12-10 21:24:45 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(qp_decode): Bugfix: extend chr to accomodate three characters and
terminate it with zero.
1 parent
06931f48
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
mailbox/filter_trans.c
mailbox/filter_trans.c
View file @
72a838b
...
...
@@ -395,9 +395,10 @@ qp_decode (const char *iptr, size_t isize, char *optr, size_t osize,
else
{
/* you get =XX where XX are hex characters. */
char
chr
[
2
];
char
chr
[
3
];
int
new_c
;
chr
[
3
]
=
0
;
chr
[
0
]
=
*
iptr
++
;
/* Ignore LF. */
if
(
chr
[
0
]
!=
'\n'
)
...
...
Please
register
or
sign in
to post a comment