Ticket #22644 (closed defect: fixed)
VLC preference dialog not working
| Reported by: | vaulse@… | Owned by: | mnick@… |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | ports | Version: | 1.8.1 |
| Keywords: | Cc: | raimue@…, cavinsays@…, ryandesign@… | |
| Port: | vlc |
Description
I installed the current vlc port under 10.5.8 (Intel). The build completed without error, but when I select "Preferences" from the "VLC" menu, nothing happens. I get the following entries in the system log:
VLC[48253]: *** +[NSString stringWithUTF8String:]: NULL cString [0x0-0x99e99e].org.videolan.vlc[48253]: [0x4c12528] main interface error: option rtsp-tcp does not exist [0x0-0x99e99e].org.videolan.vlc[48253]: [0x4c12528] macosx interface error: option rtsp-tcp does not exist
The developer's build works as expected on my system.
Attachments
Change History
comment:2 Changed 3 years ago by raimue@…
- Cc raimue@… added
Seeing the exact same message with VLC @1.0.4 on Mac OS X 10.6.2.
comment:6 Changed 3 years ago by kalen@…
First of all, sorry for my bad english.
Added patch corrects error showing VLC Prefernces by inserting simple condition in file
modules/gui/macosx/simple_prefs.m
Error was in void
- (void)setupButton: (NSButton *)object forBoolValue: (const char *)name
in line
[object setToolTip: [NSString stringWithUTF8String: config_GetLabel( p_intf, name )]];
Void produced error when config_GetLabel( p_intf, name ) returns NULL. You may see it in system log by opening Console.
Corrected string is there:
if( config_GetLabel( p_intf, name ) )
[object setToolTip: [NSString stringWithUTF8String: config_GetLabel( p_intf, name )]];
comment:7 follow-up: ↓ 8 Changed 3 years ago by ryandesign@…
Remember WikiFormatting, please. I believe I corrected the formatting in your post above.
So why does the official dmg of VLC 1.0.5 not have the problem but our source build of it does?
Has this patch of yours already been applied to the VLC sources upstream?
comment:8 in reply to: ↑ 7 Changed 3 years ago by kalen@…
Replying to ryandesign@…:
Remember WikiFormatting, please. I believe I corrected the formatting in your post above.
So why does the official dmg of VLC 1.0.5 not have the problem but our source build of it does?
Has this patch of yours already been applied to the VLC sources upstream?
Sorry for formatting, this is my very first post in MacPorts :)
No, this patch I've created about one hour ago, so it doesnt applied to VLC source upstream. Can you help me with this? I'm not shure I'll do this because of my bad english. Thank you for help!
comment:10 Changed 3 years ago by ryandesign@…
Any update on this situation? Has anybody informed the developers of VLC about this problem and our proposed solution? If not, somebody should please do so.
comment:11 Changed 3 years ago by mnick@…
- Status changed from new to closed
- Resolution set to fixed
Sorry, this ticket somehow ended up in my spam folder... Should be fixed in r66366

