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
Memory leak in ReadYCBCRImage
canvas_image=CloneImage(image,image->extract_info.width,1,MagickFalse, //line 170, allocation for canvas_image exception); if (canvas_image == (Image *) NULL) ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed"); (void) SetImageVirtualPixelMethod(canvas_image,BlackVirtualPixelMethod, exception); quantum_info=AcquireQuantumInfo(image_info,canvas_image); if (quantum_info == (QuantumInfo *) NULL) ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed"); //line 178, memory leak as not free canvas_image
Credit: ADLab of Venustech
The text was updated successfully, but these errors were encountered:
Fixed in #1041.
Sorry, something went wrong.
CVE-2018-10805 was assigned to this issue.
Do you have the im6 commit ?
ImageMagick/ImageMagick6@53060aa
No branches or pull requests
Prerequisites
Description
Memory leak in ReadYCBCRImage
Steps to Reproduce
System Configuration
Credit: ADLab of Venustech
The text was updated successfully, but these errors were encountered: