Re: [FFmpeg-devel] [PATCH] libavformat/avio: NULL check for URLContext in ffurl_write().

2018-02-08 Thread Nicolas George
Patagar, Ravindra (2018-02-08): > We observed NULL pointer during HLS/DASH streaming when we simulated > network congestion and disconnects with persistent HTTP connection. > That is why added this check to handle segmentation fault. Please investigate further: find who is calling this function

Re: [FFmpeg-devel] [PATCH] libavformat/avio: NULL check for URLContext in ffurl_write().

2018-02-08 Thread Patagar, Ravindra
Hi, We observed NULL pointer during HLS/DASH streaming when we simulated network congestion and disconnects with persistent HTTP connection. That is why added this check to handle segmentation fault. On 2/7/18, 4:52 PM, "wm4" wrote: On Wed, 7 Feb 2018 08:57:26

Re: [FFmpeg-devel] [PATCH] libavformat/avio: NULL check for URLContext in ffurl_write().

2018-02-07 Thread wm4
On Wed, 7 Feb 2018 08:57:26 +0530 rpata...@akamai.com wrote: > From: Ravindra > > Signed-off-by: Ravindra > --- > libavformat/avio.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavformat/avio.c b/libavformat/avio.c >

[FFmpeg-devel] [PATCH] libavformat/avio: NULL check for URLContext in ffurl_write().

2018-02-06 Thread rpatagar
From: Ravindra Signed-off-by: Ravindra --- libavformat/avio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/avio.c b/libavformat/avio.c index 63e8287..18e58ae 100644 --- a/libavformat/avio.c +++ b/libavformat/avio.c @@