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
28f096cb
...
28f096cbc8f3ffd1f04d778f8738242e9f2a042c
authored
2001-10-08 09:37:27 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fixed memory leak in strobj_free()
1 parent
6e19aa1e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
mh/mh_format.c
mh/mh_format.c
View file @
28f096c
...
...
@@ -97,7 +97,8 @@ strobj_assign (strobj_t *lvalue, strobj_t *rvalue)
{
strobj_free
(
lvalue
);
*
lvalue
=
*
rvalue
;
strobj_free
(
rvalue
);
rvalue
->
size
=
0
;
rvalue
->
ptr
=
NULL
;
}
static
void
...
...
Please
register
or
sign in
to post a comment