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
Steve Lhomme
VLC
Commits
390b9dcb
Commit
390b9dcb
authored
Feb 18, 2008
by
Rafaël Carré
Browse files
fix compilation on win32
parent
8c55b826
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/misc/gnutls.c
View file @
390b9dcb
...
...
@@ -129,22 +129,22 @@ static int gcry_vlc_mutex_init( void **p_sys )
static
int
gcry_vlc_mutex_destroy
(
void
**
p_sys
)
{
int
i_val
;
vlc_mutex_t
*
p_lock
=
(
vlc_mutex_t
*
)
*
p_sys
;
i_val
=
vlc_mutex_destroy
(
p_lock
);
vlc_mutex_destroy
(
p_lock
);
free
(
p_lock
);
return
i_val
;
return
VLC_SUCCESS
;
}
static
int
gcry_vlc_mutex_lock
(
void
**
p_sys
)
{
return
vlc_mutex_lock
(
(
vlc_mutex_t
*
)
*
p_sys
);
vlc_mutex_lock
(
(
vlc_mutex_t
*
)
*
p_sys
);
return
VLC_SUCCESS
;
}
static
int
gcry_vlc_mutex_unlock
(
void
**
lock
)
{
return
vlc_mutex_unlock
(
(
vlc_mutex_t
*
)
*
lock
);
vlc_mutex_unlock
(
(
vlc_mutex_t
*
)
*
lock
);
return
VLC_SUCCESS
;
}
static
struct
gcry_thread_cbs
gcry_threads_vlc
=
...
...
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