Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
dd334ce0
Commit
dd334ce0
authored
Jul 18, 2005
by
Rémi Denis-Courmont
Browse files
Fix use of fatal use of unitialized value (regression in [11778])
parent
42af3cf8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/stream_output/acl.c
View file @
dd334ce0
...
...
@@ -66,7 +66,7 @@ struct vlc_acl_t
static
int
ACL_Resolve
(
vlc_object_t
*
p_this
,
uint8_t
*
p_bytes
,
const
char
*
psz_ip
)
{
struct
addrinfo
hints
,
*
res
;
struct
addrinfo
hints
=
{
0
}
,
*
res
;
int
i_family
;
hints
.
ai_socktype
=
SOCK_STREAM
;
/* doesn't matter */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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