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
d4fe8def
Commit
d4fe8def
authored
Mar 10, 2015
by
Hugo Beauzée-Luyssen
Browse files
dsm: Fix leak
parent
c9a911ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/access/dsm/access.c
View file @
d4fe8def
...
...
@@ -239,10 +239,10 @@ static void Close( vlc_object_t *p_this )
smb_fclose
(
p_sys
->
p_session
,
p_sys
->
i_fd
);
if
(
p_sys
->
p_session
)
smb_session_destroy
(
p_sys
->
p_session
);
vlc_UrlClean
(
&
p_sys
->
url
);
free
(
p_sys
->
creds
.
login
);
free
(
p_sys
->
creds
.
password
);
free
(
p_sys
->
creds
.
domain
);
free
(
p_sys
->
url
.
psz_buffer
);
free
(
p_sys
->
psz_share
);
free
(
p_sys
->
psz_path
);
free
(
p_sys
);
...
...
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