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
00049d68
...
00049d688b8af8d69cac8c1f996ad317954aeaff
authored
2000-11-09 05:01:42 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Simple fix, I mixed up the list next pointer.
1 parent
a40eb4ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
0 deletions
mailbox/list.c
mailbox/list.c
View file @
00049d6
...
...
@@ -129,6 +129,7 @@ list_remove (list_t list, void *item)
if
((
int
)
current
->
item
==
(
int
)
item
)
{
previous
->
next
=
current
->
next
;
current
->
next
->
prev
=
previous
;
free
(
current
);
list
->
count
--
;
RWLOCK_UNLOCK
(
&
(
list
->
rwlock
));
...
...
Please
register
or
sign in
to post a comment