Re: [FFmpeg-devel] [PATCH]lavf/mov: Only copy extradata if it exists.

2017-04-19 Thread Carl Eugen Hoyos
2017-04-18 16:33 GMT+02:00 Michael Niedermayer : > On Tue, Apr 18, 2017 at 10:59:31AM +0200, Carl Eugen Hoyos wrote: >> Hi! >> >> Attached patch fixes an ubsan warning like the following here: >> libavformat/mov.c:2332:13: runtime error: null pointer passed as argument 2,

Re: [FFmpeg-devel] [PATCH]lavf/mov: Only copy extradata if it exists.

2017-04-18 Thread Michael Niedermayer
On Tue, Apr 18, 2017 at 10:59:31AM +0200, Carl Eugen Hoyos wrote: > Hi! > > Attached patch fixes an ubsan warning like the following here: > libavformat/mov.c:2332:13: runtime error: null pointer passed as argument 2, > which is declared to never be null > > Please comment, Carl Eugen > mov.c

[FFmpeg-devel] [PATCH]lavf/mov: Only copy extradata if it exists.

2017-04-18 Thread Carl Eugen Hoyos
Hi! Attached patch fixes an ubsan warning like the following here: libavformat/mov.c:2332:13: runtime error: null pointer passed as argument 2, which is declared to never be null Please comment, Carl Eugen From b117fdd2adf3271fcaf8f9388866aaf115284f74 Mon Sep 17 00:00:00 2001 From: Carl Eugen