- Timestamp:
- 06/05/08 22:15:51 (7 months ago)
- git-parent:
- Files:
-
- src/control/media_library.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
src/control/media_library.c
rd6a7e48 r146dad5 90 90 libvlc_exception_t * p_e ) 91 91 { 92 const char *psz_datadir = 93 libvlc_priv (p_mlib->p_libvlc_instance->p_libvlc_int)->psz_datadir; 92 char *psz_datadir = config_GetUserDataDir(); 94 93 char * psz_uri; 95 94 … … 103 102 psz_datadir ) == -1 ) 104 103 { 104 free( psz_datadir ); 105 105 libvlc_exception_raise( p_e, "Can't get create the path" ); 106 106 return; 107 107 } 108 free( psz_datadir ); 108 109 if( p_mlib->p_mlist ) 109 110 libvlc_media_list_release( p_mlib->p_mlist );
