1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-04 09:11:33 +02:00

Dummy decoder: ASCII path, use utf8_open() for close-on-exec

This commit is contained in:
Rémi Denis-Courmont 2009-10-17 23:34:03 +03:00
parent e7aa938311
commit 9f73b317af

View File

@ -30,6 +30,7 @@
#include <vlc_common.h>
#include <vlc_codec.h>
#include <vlc_charset.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h> /* write(), close() */
@ -92,7 +93,7 @@ static int OpenDecoderCommon( vlc_object_t *p_this, bool b_force_dump )
}
if( b_force_dump )
{
p_sys->i_fd = open( psz_file, O_WRONLY | O_CREAT | O_TRUNC, 00644 );
p_sys->i_fd = utf8_open( psz_file, O_WRONLY | O_CREAT | O_TRUNC, 00644 );
if( p_sys->i_fd == -1 )
{