1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-11 06:21:30 +02:00

Framebuffer OSD: path from VLC config, need utf8_open

This commit is contained in:
Rémi Denis-Courmont 2009-10-17 23:33:18 +03:00
parent 5227039670
commit e7aa938311

View File

@ -31,6 +31,7 @@
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_charset.h>
#include <errno.h>
#include <stdlib.h> /* free() */
@ -1059,7 +1060,7 @@ static int OpenDisplay( intf_thread_t *p_intf )
return VLC_EGENERIC;
}
p_sys->i_fd = open( psz_device, O_RDWR );
p_sys->i_fd = utf8_open( psz_device, O_RDWR );
if( p_sys->i_fd == -1 )
{
msg_Err( p_intf, "cannot open %s (%m)", psz_device );