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
0dccf4e8
...
0dccf4e803cb3910770a7a26ccb38926706027d3
authored
2002-11-25 08:49:59 +0000
by
Frederic Gobry
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fixed cache handling during address concatenation
1 parent
7b59a171
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
ChangeLog
mailbox/address.c
ChangeLog
View file @
0dccf4e
2002
-
11
-
25
Frederic
Gobry
<
frederic
.
gobry
@smartdata
.
ch
>
*
mailbox
/
address
.
c
(
address_concatenate
)
:
cleanup
the
address
cache
during
concatenation
.
2002
-
11
-
25
Sergey
Poznyakoff
*
mail
.
local
/
main
.
c
(
deliver
)
:
Bugfix
:
n
and
isize
were
not
...
...
mailbox/address.c
View file @
0dccf4e
...
...
@@ -171,8 +171,16 @@ address_concatenate (address_t to, address_t * from)
to
->
next
=
*
from
;
*
from
=
NULL
;
/* discard the current string cache as it is now inaccurate */
if
(
to
->
addr
)
{
free
(
to
->
addr
);
to
->
addr
=
NULL
;
}
to
=
to
->
next
;
/* only the first address must have a cache */
if
(
to
->
addr
)
{
free
(
to
->
addr
);
...
...
Please
register
or
sign in
to post a comment