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
25b01191
Commit
25b01191
authored
Nov 17, 2004
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fix some crashes because of new playlist core
parent
9001c648
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+6
-6
modules/gui/macosx/vout.m
modules/gui/macosx/vout.m
+1
-2
No files found.
modules/gui/macosx/intf.m
View file @
25b01191
...
...
@@ -867,18 +867,18 @@ static VLCMain *_o_sharedMainInstance = nil;
{
return
;
}
/*
vlc_mutex_lock
(
&
p_playlist
->
object_lock
);
o_temp
=
[
NSString
stringWithUTF8String
:
p_playlist->p
p_items[p_playlist->i_index]->
input.psz_name];
p_playlist
->
p
_
input
.
psz_name
];
if
(
o_temp
==
NULL
)
o_temp
=
[
NSString
stringWithCString
:
p_playlist->p
p_items[p_playlist->i_index]->
input.psz_name];
p_playlist
->
p
_
input
.
psz_name
];
vlc_mutex_unlock
(
&
p_playlist
->
object_lock
);
[
o_scrollfield
setStringValue
:
o_temp
];
*/
/*p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
p_vout
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_VOUT
,
FIND_ANYWHERE
);
if
(
p_vout
!=
NULL
)
{
...
...
@@ -893,7 +893,7 @@ static VLCMain *_o_sharedMainInstance = nil;
}
}
vlc_object_release
(
(
vlc_object_t
*
)
p_vout
);
}
*/
}
[
o_playlist
updateRowSelection
];
vlc_object_release
(
p_playlist
);
p_intf
->
p_sys
->
b_current_title_update
=
FALSE
;
...
...
modules/gui/macosx/vout.m
View file @
25b01191
...
...
@@ -349,9 +349,8 @@
vlc_mutex_lock
(
&
p_playlist
->
object_lock
);
o_title
=
[
NSMutableString
stringWithUTF8String
:
p_playlist
->
p
p_items
[
p_playlist
->
i_index
]
->
input
.
psz_uri
];
p_playlist
->
p
_
input
.
psz_uri
];
vlc_mutex_unlock
(
&
p_playlist
->
object_lock
);
vlc_object_release
(
p_playlist
);
if
(
o_title
!=
nil
)
...
...
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