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
5354b800
...
5354b800503a73b936dc23584f14b8a37fd11473
authored
2000-11-11 02:36:58 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Free the body and the url when done.
1 parent
144b407d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
mailbox/body.c
mailbox/url.c
mailbox/body.c
View file @
5354b80
...
...
@@ -65,6 +65,7 @@ body_destroy (body_t *pbody, void *owner)
if
(
body
->
filename
)
free
(
body
->
filename
);
stream_destroy
(
&
(
body
->
stream
),
body
);
free
(
body
);
}
*
pbody
=
NULL
;
}
...
...
mailbox/url.c
View file @
5354b80
...
...
@@ -62,6 +62,8 @@ url_destroy (url_t *purl)
if
(
url
->
host
)
free
(
url
->
host
);
free
(
url
);
*
purl
=
NULL
;
}
}
...
...
Please
register
or
sign in
to post a comment