Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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
vlc-gpu
Commits
658d4d7a
Commit
658d4d7a
authored
Dec 11, 2003
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
free
parent
b8c5f7b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
modules/misc/sap.c
modules/misc/sap.c
+11
-1
No files found.
modules/misc/sap.c
View file @
658d4d7a
...
...
@@ -2,7 +2,7 @@
* sap.c : SAP interface module
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: sap.c,v 1.4
1 2003/12/11 20:08:48
zorglub Exp $
* $Id: sap.c,v 1.4
2 2003/12/11 20:40:37
zorglub Exp $
*
* Authors: Arnaud Schauly <gitan@via.ecp.fr>
* Clment Stenac <zorglub@via.ecp.fr>
...
...
@@ -334,6 +334,7 @@ static void Close( vlc_object_t *p_this )
{
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
p_this
;
intf_sys_t
*
p_sys
=
p_intf
->
p_sys
;
int
i
;
if
(
p_sys
->
fd
[
0
]
>
0
)
{
...
...
@@ -344,6 +345,15 @@ static void Close( vlc_object_t *p_this )
close
(
p_sys
->
fd
[
1
]
);
}
for
(
i
=
0
;
i
<
p_sys
->
i_announces
;
i
++
)
{
if
(
p_sys
->
pp_announces
[
i
]
->
psz_name
)
free
(
p_sys
->
pp_announces
[
i
]
->
psz_name
);
if
(
p_sys
->
pp_announces
[
i
]
->
psz_uri
)
free
(
p_sys
->
pp_announces
[
i
]
->
psz_uri
);
free
(
p_sys
->
pp_announces
[
i
]
);
}
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