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
edbc0d19
...
edbc0d19b76ce8f3bfaf08999d1026923b57713e
authored
2007-02-23 11:45:45 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu_auth_data_destroy): New function
1 parent
d6ea036a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletions
mailbox/mu_auth.c
mailbox/mu_auth.c
View file @
edbc0d1
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 2002, 2004, 2005, 2006 Free Software Foundation, Inc.
Copyright (C) 2002, 2004, 2005, 2006
, 2007
Free Software Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
...
...
@@ -108,6 +108,16 @@ mu_auth_data_free (struct mu_auth_data *ptr)
free
(
ptr
);
}
void
mu_auth_data_destroy
(
struct
mu_auth_data
**
pptr
)
{
if
(
pptr
)
{
mu_auth_data_free
(
*
pptr
);
*
pptr
=
NULL
;
}
}
/* Generic functions */
struct
auth_stack_entry
{
...
...
Please
register
or
sign in
to post a comment