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
18690e0e
...
18690e0e6677191f24787c6d340a6a80563cba4b
authored
2003-03-25 22:08:00 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu_rfc2822_references,mu_rfc2822_in_reply_to): Return MU_ERR_FAILURE on error.
1 parent
08189be2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
mailbox/mutil.c
mailbox/mutil.c
View file @
18690e0
...
...
@@ -41,6 +41,7 @@
#include <mailutils/address.h>
#include <mailutils/error.h>
#include <mailutils/errno.h>
#include <mailutils/iterator.h>
#include <mailutils/mutil.h>
#include <mailutils/parse822.h>
...
...
@@ -946,8 +947,9 @@ mu_rfc2822_references (message_t msg, char **pstr)
*
pstr
=
concat
(
ref
,
msgid
);
free
(
ref
);
free
(
msgid
);
return
0
;
}
return
0
;
return
MU_ERR_FAILURE
;
}
#define DATEBUFSIZE 128
...
...
@@ -1013,6 +1015,7 @@ mu_rfc2822_in_reply_to (message_t msg, char **pstr)
*
pstr
=
concat
(
s1
,
s2
);
free
(
s1
);
free
(
s2
);
return
0
;
}
return
0
;
return
MU_ERR_FAILURE
;
}
...
...
Please
register
or
sign in
to post a comment