Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
50eabda6
Commit
50eabda6
authored
Feb 04, 2003
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* We released an array that was in a autorelease pool. That's not necesarry
parent
e09eeeb6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
12 deletions
+8
-12
src/misc/darwin_specific.m
src/misc/darwin_specific.m
+8
-12
No files found.
src/misc/darwin_specific.m
View file @
50eabda6
...
...
@@ -2,7 +2,7 @@
* darwin_specific.m: Darwin specific features
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: darwin_specific.m,v 1.
8 2003/02/01 20:34:55 massiot
Exp $
* $Id: darwin_specific.m,v 1.
9 2003/02/04 20:45:24 hartman
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Christophe Massiot <massiot@via.ecp.fr>
...
...
@@ -107,19 +107,15 @@ void system_Init( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] )
NSEnumerator
*
o_enumerator
=
[
o_languages
objectEnumerator
];
NSString
*
o_lang
;
while
(
(
o_lang
=
[
o_enumerator
nextObject
])
)
{
if
(
!
b_found
)
{
const
char
*
psz_string
=
[
o_lang
lossyCString
];
if
(
FindLanguage
(
psz_string
)
)
{
b_found
=
1
;
}
while
(
(
o_lang
=
[
o_enumerator
nextObject
])
&&
(
!
b_found
)
)
{
const
char
*
psz_string
=
[
o_lang
lossyCString
];
if
(
FindLanguage
(
psz_string
)
)
{
b_found
=
1
;
}
}
[
o_languages
release
];
[
o_pool
release
];
}
}
...
...
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