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
b077544f
...
b077544fa395d5709d67d2bf4df8e3e4467e2256
authored
2004-07-01 15:20:04 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Typo, we had two sizeof() operator.
1 parent
fabaad02
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/list.c
mailbox/list.c
View file @
b077544
...
...
@@ -424,7 +424,7 @@ list_data_dup (void **ptr, void *owner)
{
struct
list_iterator
*
itr
=
owner
;
struct
list_iterator
*
clone
;
clone
=
malloc
(
sizeof
(
sizeof
*
itr
)
);
clone
=
malloc
(
sizeof
*
itr
);
if
(
clone
==
NULL
)
return
ENOMEM
;
/* let the assignement operator copy the elements. */
...
...
Please
register
or
sign in
to post a comment