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
144b407d
...
144b407d429611399f4c5abed827dd73091cb693
authored
2000-11-10 05:28:04 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Forgot to commit this too, was not freeing.
1 parent
d7eacb96
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
mailbox/attribute.c
mailbox/attribute.c
View file @
144b407
...
...
@@ -45,12 +45,11 @@ attribute_destroy (attribute_t *pattr, void *owner)
if
(
pattr
&&
*
pattr
)
{
attribute_t
attr
=
*
pattr
;
if
(
attr
->
owner
!
=
owner
)
if
(
attr
->
owner
=
=
owner
)
free
(
*
pattr
);
/* loose the link */
*
pattr
=
NULL
;
}
return
;
}
void
*
...
...
Please
register
or
sign in
to post a comment