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
0c2c0e86
...
0c2c0e86e9a101d074e68b118c0f73d69434f77b
authored
2002-11-18 17:14:39 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu_message_set_header): Fixed memory leak
1 parent
eaaf8356
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
libmu_scm/mu_message.c
libmu_scm/mu_message.c
View file @
0c2c0e8
...
...
@@ -270,7 +270,7 @@ SCM_DEFINE (mu_message_set_header, "mu-message-set-header", 3, 1, 0,
}
message_get_header
(
msg
,
&
hdr
);
header_set_value
(
hdr
,
SCM_STRING_CHARS
(
HEADER
),
strdup
(
SCM_STRING_CHARS
(
VALUE
)
),
header_set_value
(
hdr
,
SCM_STRING_CHARS
(
HEADER
),
SCM_STRING_CHARS
(
VALUE
),
replace
);
return
SCM_UNSPECIFIED
;
}
...
...
Please
register
or
sign in
to post a comment