Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
LSH
lsh
Commits
130a4154
Commit
130a4154
authored
Sep 03, 1998
by
Niels Möller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
s/free/lsh_free/
Rev: src/io.c:1.7
parent
ab6eba29
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/io.c
src/io.c
+6
-6
No files found.
src/io.c
View file @
130a4154
...
...
@@ -139,7 +139,7 @@ void io_run(struct io_backend *b)
if
(
!
CALLBACK
(
f
->
callout
))
fatal
(
"What now?"
);
b
->
callouts
=
f
->
next
;
free
(
f
);
lsh_
free
(
f
);
}
if
(
res
<
0
)
{
...
...
@@ -217,9 +217,9 @@ void io_run(struct io_backend *b)
UNLINK_FD
;
b
->
nio
--
;
if
(
fd
->
handler
)
free
(
fd
->
handler
);
free
(
fd
->
buffer
);
free
(
fd
);
lsh_
free
(
fd
->
handler
);
lsh_
free
(
fd
->
buffer
);
lsh_
free
(
fd
);
continue
;
}
}
...
...
@@ -244,7 +244,7 @@ void io_run(struct io_backend *b)
{
/* FIXME: Should fd be closed here? */
UNLINK_FD
;
free
(
fd
);
lsh_
free
(
fd
);
continue
;
}
}
...
...
@@ -259,7 +259,7 @@ void io_run(struct io_backend *b)
fatal
(
"What now?"
);
b
->
nconnect
--
;
UNLINK_FD
;
free
(
fd
);
lsh_
free
(
fd
);
continue
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment