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
a6a719cf
...
a6a719cfbc2ffbc8995b9e338fd60b8ae2acdcab
authored
2002-05-11 00:49:43 +0000
by
Sam Roberts
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
The arg check I added was checking floating data instead of actual args,
serious error, fixed.
1 parent
508a2d28
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/tcp.c
mailbox/tcp.c
View file @
a6a719c
...
...
@@ -232,7 +232,7 @@ tcp_stream_create (stream_t * stream, const char* host, int port, int flags)
struct
_tcp_instance
*
tcp
;
int
ret
;
if
(
tcp
->
host
==
NULL
||
tcp
->
port
<
1
)
if
(
host
==
NULL
||
port
<
1
)
return
EINVAL
;
if
((
tcp
=
malloc
(
sizeof
(
*
tcp
)))
==
NULL
)
...
...
Please
register
or
sign in
to post a comment