Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
3bf76033
Commit
3bf76033
authored
Nov 06, 2004
by
Rémi Denis-Courmont
Browse files
Fixes malloc's parameter
parent
ee0b4010
Changes
1
Show whitespace changes
Inline
Side-by-side
modules/misc/gnutls.c
View file @
3bf76033
...
@@ -23,9 +23,7 @@
...
@@ -23,9 +23,7 @@
/*
/*
* TODO:
* TODO:
* - libgcrypt thread-safety !!!
* - fix FIXMEs,
* - fix FIXMEs,
* - gnutls version check,
* - client side stuff,
* - client side stuff,
* - server-side client cert validation,
* - server-side client cert validation,
* - client-side server cert validation (?).
* - client-side server cert validation (?).
...
@@ -170,7 +168,7 @@ gnutls_ServerSessionPrepare( tls_server_t *p_server )
...
@@ -170,7 +168,7 @@ gnutls_ServerSessionPrepare( tls_server_t *p_server )
int
val
;
int
val
;
vlc_value_t
bits
;
vlc_value_t
bits
;
p_sys
=
(
gnutls_session
*
)
malloc
(
sizeof
(
gnutls_session
*
)
);
p_sys
=
(
gnutls_session
*
)
malloc
(
sizeof
(
gnutls_session
)
);
if
(
p_sys
==
NULL
)
if
(
p_sys
==
NULL
)
return
NULL
;
return
NULL
;
...
...
Write
Preview
Supports
Markdown
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