Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
edee0a56
Commit
edee0a56
authored
Jul 28, 2012
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: prevent crashes when enabling or changing the marquee string (close #5991)
parent
3f0d5d17
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
modules/gui/macosx/VideoEffects.m
modules/gui/macosx/VideoEffects.m
+4
-3
No files found.
modules/gui/macosx/VideoEffects.m
View file @
edee0a56
...
...
@@ -25,6 +25,7 @@
#import "intf.h"
#import <vlc_common.h>
#import <vlc_modules.h>
#import <vlc_charset.h>
#import "VideoEffects.h"
#pragma mark -
...
...
@@ -539,7 +540,7 @@ static VLCVideoEffects *_o_sharedInstance = nil;
vlc_object_t
*
p_filter
;
if
(
p_vout
==
NULL
)
{
config_PutPsz
(
p_intf
,
psz_name
,
psz_value
);
config_PutPsz
(
p_intf
,
psz_name
,
EnsureUTF8
(
psz_value
)
);
}
else
{
p_filter
=
vlc_object_find_name
(
pl_Get
(
p_intf
),
psz_filter
);
...
...
@@ -548,8 +549,8 @@ static VLCVideoEffects *_o_sharedInstance = nil;
vlc_object_release
(
p_vout
);
return
;
}
var_SetString
(
p_filter
,
psz_name
,
psz_value
);
config_PutPsz
(
p_intf
,
psz_name
,
psz_value
);
var_SetString
(
p_filter
,
psz_name
,
EnsureUTF8
(
psz_value
)
);
config_PutPsz
(
p_intf
,
psz_name
,
EnsureUTF8
(
psz_value
)
);
vlc_object_release
(
p_vout
);
vlc_object_release
(
p_filter
);
...
...
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