Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
629c2b38
Commit
629c2b38
authored
Sep 04, 2008
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix memleak and config option type. (thanks to ivoire and xtophe)
parent
6d9536c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
modules/access/screen/screen.c
modules/access/screen/screen.c
+3
-2
No files found.
modules/access/screen/screen.c
View file @
629c2b38
...
...
@@ -109,8 +109,8 @@ vlc_module_begin();
#endif
#ifdef SCREEN_MOUSE
add_
string
(
"screen-mouse-image"
,
""
,
NULL
,
MOUSE_TEXT
,
MOUSE_LONGTEXT
,
true
);
add_
file
(
"screen-mouse-image"
,
""
,
NULL
,
MOUSE_TEXT
,
MOUSE_LONGTEXT
,
true
);
#endif
#ifdef WIN32
...
...
@@ -222,6 +222,7 @@ static int Open( vlc_object_t *p_this )
if
(
!
p_sys
->
p_mouse
)
msg_Err
(
p_demux
,
"Failed to open mouse pointer image (%s)"
,
psz_mouse
);
free
(
psz_mouse
);
}
#endif
...
...
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