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
95233b21
Commit
95233b21
authored
Aug 04, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/misc/modules.c: don't forget to save callbacks for config options in the plugins cache.
parent
1559e11e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/misc/modules.c
src/misc/modules.c
+3
-1
No files found.
src/misc/modules.c
View file @
95233b21
...
...
@@ -1745,7 +1745,7 @@ int CacheLoadConfig( module_t *p_module, FILE *file )
}
}
p_module
->
p_config
[
i
].
pf_callback
=
0
;
LOAD_IMMEDIATE
(
p_module
->
p_config
[
i
].
pf_callback
)
;
}
p_module
->
p_config
[
i
].
i_type
=
CONFIG_HINT_END
;
...
...
@@ -1936,6 +1936,8 @@ void CacheSaveConfig( module_t *p_module, FILE *file )
for
(
j
=
0
;
j
<
p_module
->
p_config
[
i
].
i_action
;
j
++
)
SAVE_STRING
(
p_module
->
p_config
[
i
].
ppsz_action_text
[
j
]
);
SAVE_IMMEDIATE
(
p_module
->
p_config
[
i
].
pf_callback
);
}
}
...
...
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