Commit e44ad809 authored by Rémi Duraffort's avatar Rémi Duraffort

lirc: we don't need to keep the name of the file in memory.

parent d5f3c2a5
...@@ -70,7 +70,6 @@ vlc_module_end () ...@@ -70,7 +70,6 @@ vlc_module_end ()
*****************************************************************************/ *****************************************************************************/
struct intf_sys_t struct intf_sys_t
{ {
char *psz_file;
struct lirc_config *config; struct lirc_config *config;
int i_fd; int i_fd;
...@@ -90,6 +89,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -90,6 +89,7 @@ static int Open( vlc_object_t *p_this )
{ {
intf_thread_t *p_intf = (intf_thread_t *)p_this; intf_thread_t *p_intf = (intf_thread_t *)p_this;
intf_sys_t *p_sys; intf_sys_t *p_sys;
char *psz_file;
/* Allocate instance and initialize some members */ /* Allocate instance and initialize some members */
p_intf->p_sys = p_sys = malloc( sizeof( intf_sys_t ) ); p_intf->p_sys = p_sys = malloc( sizeof( intf_sys_t ) );
...@@ -98,7 +98,6 @@ static int Open( vlc_object_t *p_this ) ...@@ -98,7 +98,6 @@ static int Open( vlc_object_t *p_this )
p_intf->pf_run = Run; p_intf->pf_run = Run;
p_sys->psz_file = var_CreateGetNonEmptyString( p_intf, "lirc-file" );
p_sys->i_fd = lirc_init( "vlc", 1 ); p_sys->i_fd = lirc_init( "vlc", 1 );
if( p_sys->i_fd == -1 ) if( p_sys->i_fd == -1 )
{ {
...@@ -109,19 +108,21 @@ static int Open( vlc_object_t *p_this ) ...@@ -109,19 +108,21 @@ static int Open( vlc_object_t *p_this )
/* We want polling */ /* We want polling */
fcntl( p_sys->i_fd, F_SETFL, fcntl( p_sys->i_fd, F_GETFL ) | O_NONBLOCK ); fcntl( p_sys->i_fd, F_SETFL, fcntl( p_sys->i_fd, F_GETFL ) | O_NONBLOCK );
/* */ /* Read the configuration file */
if( lirc_readconfig( p_sys->psz_file, &p_sys->config, NULL ) != 0 ) psz_file = var_CreateGetNonEmptyString( p_intf, "lirc-file" );
if( lirc_readconfig( psz_file, &p_sys->config, NULL ) != 0 )
{ {
msg_Err( p_intf, "failure while reading lirc config" ); msg_Err( p_intf, "failure while reading lirc config" );
free( psz_file );
goto exit; goto exit;
} }
free( psz_file );
return VLC_SUCCESS; return VLC_SUCCESS;
exit: exit:
if( p_sys->i_fd != -1 ) if( p_sys->i_fd != -1 )
lirc_deinit(); lirc_deinit();
free( p_sys->psz_file );
free( p_sys ); free( p_sys );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
...@@ -137,7 +138,6 @@ static void Close( vlc_object_t *p_this ) ...@@ -137,7 +138,6 @@ static void Close( vlc_object_t *p_this )
/* Destroy structure */ /* Destroy structure */
lirc_freeconfig( p_sys->config ); lirc_freeconfig( p_sys->config );
lirc_deinit(); lirc_deinit();
free( p_sys->psz_file );
free( p_sys ); free( p_sys );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment