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
f0e16cef
...
f0e16cefe969f55a3bffef9dbe5e2057c00a829d
authored
2001-05-30 09:07:29 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
forgotten fix to util_msgset()
1 parent
9ca7eca4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
imap4d/util.c
imap4d/util.c
View file @
f0e16ce
...
...
@@ -373,7 +373,7 @@ util_msgset (char *s, size_t **set, int *n, int isuid)
{
long
tmp
=
low
;
tmp
-=
2
;
if
(
tmp
<
=
0
||
val
==
0
)
if
(
tmp
<
0
||
val
==
0
)
{
free
(
set
);
*
n
=
0
;
...
...
Please
register
or
sign in
to post a comment