mirror of https://github.com/FFmpeg/FFmpeg.git
In order to parse a number from a string, the WebM DASH manifest muxer would duplicate (via heap-allocation) the part of the string that contains the number, then read the number via atoi() and then free the duplicate again. This has been replaced by simply using strtoll() (which in contrast to atoi() has defined behaviour when the number is not representable). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>pull/338/head
parent
06fdc82337
commit
325c901430
1 changed files with 1 additions and 13 deletions
Loading…
Reference in new issue