Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
ce069b3e
Commit
ce069b3e
authored
May 20, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
variables: remove dead code
parent
49acb872
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
22 deletions
+0
-22
src/misc/variables.c
src/misc/variables.c
+0
-22
No files found.
src/misc/variables.c
View file @
ce069b3e
...
...
@@ -35,9 +35,6 @@
#include <float.h>
#include <math.h>
#include <limits.h>
#ifdef __GLIBC__
# include <dlfcn.h>
#endif
#include <vlc_common.h>
#include <vlc_charset.h>
...
...
@@ -155,25 +152,6 @@ static void Destroy( variable_t *p_var )
free
(
p_var
->
choices
.
p_values
);
free
(
p_var
->
choices_text
.
p_values
);
}
#if 0 // ndef NDEBUG
callback_table_t *p_table = &p_var->value_callbacks;
for (int i = 0; i < p_table->i_entries; i++)
{
const char *file = "?", *symbol = "?";
const void *addr = p_table->p_entries[i].pf_callback;
# ifdef __GLIBC__
Dl_info info;
if (dladdr (addr, &info))
{
if (info.dli_fname) file = info.dli_fname;
if (info.dli_sname) symbol = info.dli_sname;
}
# endif
fprintf
(
stderr
,
"Error: callback on
\"
%s
\"
dangling %s(%s)[%p]
\n
"
,
p_var
->
psz_name
,
file
,
symbol
,
addr
);
}
#endif
free
(
p_var
->
psz_name
);
free
(
p_var
->
psz_text
);
...
...
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