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
bcf3cce0
Commit
bcf3cce0
authored
Nov 07, 2010
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lua_timers: fix timers.
parent
e86691a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
modules/misc/lua/libs/misc.c
modules/misc/lua/libs/misc.c
+5
-1
No files found.
modules/misc/lua/libs/misc.c
View file @
bcf3cce0
...
...
@@ -309,17 +309,21 @@ static int vlclua_timer_delete( lua_State *L )
vlc_timer_destroy
(
(
*
pp_timer
)
->
timer
);
free
(
(
*
pp_timer
)
->
psz_callback
);
free
(
(
*
pp_timer
)
);
return
0
;
}
static
int
vlclua_timer_create
(
lua_State
*
L
)
{
vlclua_timer_t
*
p_timer
=
malloc
(
sizeof
(
vlclua_timer_t
)
);
if
(
!
lua_isstring
(
L
,
1
)
)
return
luaL_error
(
L
,
"timer(function_name)"
);
vlclua_timer_t
*
p_timer
=
malloc
(
sizeof
(
vlclua_timer_t
)
);
if
(
vlc_timer_create
(
&
p_timer
->
timer
,
vlclua_timer_callback
,
p_timer
)
)
{
free
(
p_timer
);
return
luaL_error
(
L
,
"Cannot initialize the timer"
);
}
p_timer
->
L
=
L
;
p_timer
->
psz_callback
=
strdup
(
luaL_checkstring
(
L
,
1
)
);
...
...
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