We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The OpenMP4Source() function does not free the malloc()'ed memory for
OpenMP4Source()
gpmf-parser/demo/GPMF_mp4reader.c
Line 155 in 98aff12
when it is called with a MP4 input file that is smaller than 64 byte. This is due to the abort condition that misses a free(mp4):
free(mp4)
Line 169 in 98aff12
This problem should not have any impact in practice since the caller will likely abort early and the memory will be reclaimed on program exit.
The text was updated successfully, but these errors were encountered:
Thanks, I have just fixed in on the develop branch.
Sorry, something went wrong.
No branches or pull requests
The
OpenMP4Source()
function does not free the malloc()'ed memory forgpmf-parser/demo/GPMF_mp4reader.c
Line 155 in 98aff12
when it is called with a MP4 input file that is smaller than 64 byte. This is due to the abort condition that misses a
free(mp4)
:gpmf-parser/demo/GPMF_mp4reader.c
Line 169 in 98aff12
This problem should not have any impact in practice since the caller will likely abort early and the memory will be reclaimed on program exit.
The text was updated successfully, but these errors were encountered: