diff options
author | Christopher Degawa <ccom@randomderp.com> | 2020-10-08 12:45:21 +0000 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-02-27 07:20:59 +0100 |
commit | 9e950320e73a3ac649e1f025a1c28e57b7ca145b (patch) | |
tree | adce95935e09e8b442bf045f2d88001fc9983eaa /Changelog | |
parent | f3ee6b2a3e04624fcec0f230d4a429ff6cf0ea54 (diff) | |
download | ffmpeg-9e950320e73a3ac649e1f025a1c28e57b7ca145b.tar.gz |
libavformat/dashdec: Fix issue with dash on Windows
Use xmlFree instead of av_freep
snip from libxml2:
* xmlGetProp:
...
* Returns the attribute value or NULL if not found.
* It's up to the caller to free the memory with xmlFree().
According to libxml2, you are supposed to use xmlFree instead of free
on the pointer returned by it, and also using av_freep on Windows will
call _aligned_free instead of normal free, causing _aligned_free to raise
SIGTRAP and crashing ffmpeg and ffplay.
Signed-off-by: Christopher Degawa <ccom@randomderp.com>
(cherry picked from commit 0117d5aa03aca0158ee54b806d420fb1a974b788)
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'Changelog')
0 files changed, 0 insertions, 0 deletions