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
06aea14d
...
06aea14de4fdbaf6875b499d08d7fec55e22facb
authored
2000-11-23 02:55:00 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
check the return status of pthread_mutex_destroy.
1 parent
91dfd76f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
mailbox/mailer.c
mailbox/mailer.c
View file @
06aea14
...
...
@@ -74,7 +74,12 @@ mailer_create (mailer_t *pmailer, const char *name, int id)
if
(
mailer
==
NULL
)
return
ENOMEM
;
RWLOCK_INIT
(
&
(
mailer
->
rwlock
),
NULL
);
status
=
RWLOCK_INIT
(
&
(
mailer
->
rwlock
),
NULL
);
if
(
status
!=
0
)
{
mailer_destroy
(
&
mailer
);
return
status
;
}
/* Parse the url, it may be a bad one and we should bailout if this
failed. */
...
...
Please
register
or
sign in
to post a comment