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
c809e98f
Commit
c809e98f
authored
Aug 18, 2007
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix input deadlocks in macosx gui
Doesn't fix input memleaks (playlist.m:204-214)
parent
c77a45c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/gui/macosx/playlistinfo.m
modules/gui/macosx/playlistinfo.m
+3
-3
No files found.
modules/gui/macosx/playlistinfo.m
View file @
c809e98f
...
...
@@ -198,6 +198,8 @@
[
NSString
stringWithUTF8String
:
p_item
->
p_input
->
psz_uri
]];
}
vlc_mutex_unlock
(
&
p_item
->
p_input
->
lock
);
/* fill the other fields */
[
self
setMeta
:
input_item_GetTitle
(
p_item
->
p_input
)
forLabel
:
o_title_txt
];
[
self
setMeta
:
input_item_GetArtist
(
p_item
->
p_input
)
forLabel
:
o_author_txt
];
...
...
@@ -211,8 +213,6 @@
[
self
setMeta
:
input_item_GetLanguage
(
p_item
->
p_input
)
forLabel
:
o_language_txt
];
[
self
setMeta
:
input_item_GetDate
(
p_item
->
p_input
)
forLabel
:
o_date_txt
];
vlc_mutex_unlock
(
&
p_item
->
p_input
->
lock
);
/* reload the advanced table */
[[
VLCInfoTreeItem
rootItem
]
refresh
];
[
o_outline_view
reloadData
];
...
...
@@ -297,8 +297,8 @@
p_item
->
p_input
->
psz_uri
=
strdup
(
[[
o_uri_txt
stringValue
]
UTF8String
]
);
p_item
->
p_input
->
psz_name
=
strdup
(
[[
o_title_txt
stringValue
]
UTF8String
]
);
input_item_SetArtist
(
p_item
->
p_input
,
[[
o_author_txt
stringValue
]
UTF8String
]
);
vlc_mutex_unlock
(
&
p_item
->
p_input
->
lock
);
input_item_SetArtist
(
p_item
->
p_input
,
[[
o_author_txt
stringValue
]
UTF8String
]
);
val
.
b_bool
=
VLC_TRUE
;
var_Set
(
p_playlist
,
"intf-change"
,
val
);
...
...
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