From 37a6b6ee38d8a160121c60d30dc5638055d4eb1d Mon Sep 17 00:00:00 2001 From: Ilkka Ollakka Date: Mon, 15 Apr 2013 16:42:19 +0300 Subject: [PATCH] livehttp: don't sanitize segment URI Should Fix: #8434 --- modules/access_output/livehttp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/access_output/livehttp.c b/modules/access_output/livehttp.c index 66e94d3cdd..5ac802df8b 100644 --- a/modules/access_output/livehttp.c +++ b/modules/access_output/livehttp.c @@ -797,7 +797,7 @@ static ssize_t openNextFile( sout_access_out_t *p_access, sout_access_out_sys_t segment->i_segment_number = i_newseg; segment->psz_filename = formatSegmentPath( p_access->psz_path, i_newseg, true ); char *psz_idxFormat = p_sys->psz_indexUrl ? p_sys->psz_indexUrl : p_access->psz_path; - segment->psz_uri = formatSegmentPath( psz_idxFormat , i_newseg, true ); + segment->psz_uri = formatSegmentPath( psz_idxFormat , i_newseg, false ); if ( unlikely( !segment->psz_filename ) ) { -- 2.39.2