Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libdvbpsi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
libdvbpsi
Commits
1f9cf2f2
Commit
1f9cf2f2
authored
Apr 16, 2014
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
examples/connect.c: Resource leak (CID 28605)
parent
fb280937
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
examples/connect.c
examples/connect.c
+2
-1
No files found.
examples/connect.c
View file @
1f9cf2f2
...
...
@@ -93,7 +93,7 @@ int create_udp_connection( const char *ipaddress, int port )
if
(
!
ipaddress
)
return
-
1
;
s_ctl
=
socket
(
PF_INET
,
SOCK_DGRAM
,
IPPROTO_UDP
);
if
(
s_ctl
<
=
0
)
if
(
s_ctl
<
0
)
{
perror
(
"udp socket error"
);
return
-
1
;
...
...
@@ -106,6 +106,7 @@ int create_udp_connection( const char *ipaddress, int port )
result
=
bind
(
s_ctl
,
(
struct
sockaddr
*
)
&
addr_ctl
,
sizeof
(
addr_ctl
));
if
(
result
<
0
)
{
close
(
s_ctl
);
perror
(
"udp bind error"
);
return
-
1
;
}
...
...
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