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
cc84f896
Commit
cc84f896
authored
Sep 20, 2008
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
variables: Set void_ops by default.
This fixes [
45e63d59
]
parent
875fa514
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/misc/variables.c
src/misc/variables.c
+4
-0
No files found.
src/misc/variables.c
View file @
cc84f896
...
@@ -135,6 +135,7 @@ static void FreeList( vlc_value_t *p_val )
...
@@ -135,6 +135,7 @@ static void FreeList( vlc_value_t *p_val )
}
}
static
const
struct
variable_ops_t
static
const
struct
variable_ops_t
void_ops
=
{
NULL
,
DupDummy
,
FreeDummy
,
},
addr_ops
=
{
CmpAddress
,
DupDummy
,
FreeDummy
,
},
addr_ops
=
{
CmpAddress
,
DupDummy
,
FreeDummy
,
},
bool_ops
=
{
CmpBool
,
DupDummy
,
FreeDummy
,
},
bool_ops
=
{
CmpBool
,
DupDummy
,
FreeDummy
,
},
float_ops
=
{
CmpFloat
,
DupDummy
,
FreeDummy
,
},
float_ops
=
{
CmpFloat
,
DupDummy
,
FreeDummy
,
},
...
@@ -276,6 +277,9 @@ int __var_Create( vlc_object_t *p_this, const char *psz_name, int i_type )
...
@@ -276,6 +277,9 @@ int __var_Create( vlc_object_t *p_this, const char *psz_name, int i_type )
p_var
->
ops
=
&
list_ops
;
p_var
->
ops
=
&
list_ops
;
p_var
->
val
.
p_list
=
&
dummy_null_list
;
p_var
->
val
.
p_list
=
&
dummy_null_list
;
break
;
break
;
default:
p_var
->
ops
=
&
void_ops
;
break
;
}
}
/* Duplicate the default data we stored. */
/* Duplicate the default data we stored. */
...
...
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