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
12dd5ea5
Commit
12dd5ea5
authored
Feb 19, 2009
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: more approbiate locking suggested by fenrir
and fixed a small typo
parent
b021f08d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+1
-1
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+2
-1
No files found.
modules/gui/macosx/intf.m
View file @
12dd5ea5
...
@@ -324,7 +324,7 @@ static VLCMain *_o_sharedMainInstance = nil;
...
@@ -324,7 +324,7 @@ static VLCMain *_o_sharedMainInstance = nil;
NSAlert
*
ourAlert
;
NSAlert
*
ourAlert
;
int
i_returnValue
;
int
i_returnValue
;
NSString
*
o_blabla
;
NSString
*
o_blabla
;
if
(
MACOS_VERSION
==
10
.
5
f
)
if
(
MACOS_VERSION
==
10
.
4
f
)
o_blabla
=
_NS
(
"VLC's last release for your OS is the 0.9 series."
);
o_blabla
=
_NS
(
"VLC's last release for your OS is the 0.9 series."
);
else
if
(
MACOS_VERSION
==
10
.
3
f
)
else
if
(
MACOS_VERSION
==
10
.
3
f
)
o_blabla
=
_NS
(
"VLC's last release for your OS is VLC 0.8.6i, which is prone to known security issues."
);
o_blabla
=
_NS
(
"VLC's last release for your OS is VLC 0.8.6i, which is prone to known security issues."
);
...
...
modules/gui/macosx/playlist.m
View file @
12dd5ea5
...
@@ -575,9 +575,9 @@
...
@@ -575,9 +575,9 @@
PL_LOCK
;
PL_LOCK
;
p_item
=
playlist_CurrentPlayingItem
(
p_playlist
);
p_item
=
playlist_CurrentPlayingItem
(
p_playlist
);
PL_UNLOCK
;
if
(
p_item
==
NULL
)
if
(
p_item
==
NULL
)
{
{
PL_UNLOCK
;
pl_Release
(
VLCIntf
);
pl_Release
(
VLCIntf
);
return
;
return
;
}
}
...
@@ -601,6 +601,7 @@
...
@@ -601,6 +601,7 @@
}
}
PL_UNLOCK
;
pl_Release
(
VLCIntf
);
pl_Release
(
VLCIntf
);
}
}
...
...
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