File tree 1 file changed +11
-3
lines changed
1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -3656,7 +3656,7 @@ int m3u8playlist_load_file(
3656
3656
absolute_path = expand_filename (filename );
3657
3657
3658
3658
if (absolute_path == NULL ) {
3659
- err = M3U8ERR_FSTREAM_OPEN_FAILURE ;
3659
+ err = M3U8ERR_EXPAND_FILENAME_FAILURE ;
3660
3660
goto end ;
3661
3661
}
3662
3662
@@ -3715,7 +3715,11 @@ int m3u8playlist_load_file(
3715
3715
goto end ;
3716
3716
}
3717
3717
3718
- err = m3u8playlist_seturi (playlist , M3U8_BASE_URI_TYPE_LOCAL_FILE , absolute_path );
3718
+ err = m3u8playlist_seturi (
3719
+ playlist ,
3720
+ M3U8_BASE_URI_TYPE_LOCAL_FILE ,
3721
+ absolute_path
3722
+ );
3719
3723
3720
3724
if (err != M3U8ERR_SUCCESS ) {
3721
3725
goto end ;
@@ -3820,7 +3824,11 @@ int m3u8playlist_load_url(
3820
3824
goto end ;
3821
3825
}
3822
3826
3823
- err = m3u8playlist_seturi (playlist , M3U8_BASE_URI_TYPE_URL , effective_url );
3827
+ err = m3u8playlist_seturi (
3828
+ playlist ,
3829
+ M3U8_BASE_URI_TYPE_URL ,
3830
+ effective_url
3831
+ );
3824
3832
3825
3833
if (err != M3U8ERR_SUCCESS ) {
3826
3834
goto end ;
You can’t perform that action at this time.
0 commit comments