Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
119858b2
Commit
119858b2
authored
Mar 16, 2004
by
hartman
Browse files
* Fixed a crash with blank opengl effect paramerter
parent
62b70557
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/macosx/vout.m
View file @
119858b2
...
...
@@ -1347,7 +1347,7 @@ static void QTFreePicture( vout_thread_t *p_vout, picture_t *p_pic )
/* Check if the user asked for useless visual effects */
psz_effect
=
config_GetPsz
(
p_vout
,
"macosx-opengl-effect"
);
if
(
!
strcmp
(
psz_effect
,
"none"
)
)
if
(
!
psz_effect
||
!
strcmp
(
psz_effect
,
"none"
))
{
i_effect
=
OPENGL_EFFECT_NONE
;
}
...
...
Write
Preview
Supports
Markdown
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