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
0aa6344c
...
0aa6344c986b739736566dd02ad8169c1b78b0f0
authored
2003-01-31 15:02:07 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mh_read_formfile): Bugfix.
1 parent
76502371
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mh/mh_init.c
mh/mh_init.c
View file @
0aa6344
...
...
@@ -82,7 +82,7 @@ mh_read_formfile (char *name, char **pformat)
}
format_str
=
xmalloc
(
st
.
st_size
+
1
);
while
((
ptr
=
fgets
(
format_str
+
off
,
st
.
st_size
-
off
,
fp
))
!=
NULL
)
while
((
ptr
=
fgets
(
format_str
+
off
,
st
.
st_size
-
off
+
1
,
fp
))
!=
NULL
)
{
int
len
=
strlen
(
ptr
);
if
(
len
==
0
)
...
...
Please
register
or
sign in
to post a comment