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
On a site with many gif resizes my disk filled up quickly and I traced this back to the files being generated in ImageDescriptor.php:
$tFileS = tempnam("BewareOfGeeksBearingGifs", "grS"); $tFileD = tempnam("BewareOfGeeksBearingGifs", "grD");
After the resize is done and the file is closed I see:
unset($tFileD); unset($tFileS);
while I assume this should be:
unlink($tFileD); unlink($tFileS);
Also I'm not sure why tempnam() is called with "BewareOfGeeksBearingGifs" as directory, why not just use sys_get_temp_dir() for it?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On a site with many gif resizes my disk filled up quickly and I traced this back to the files being generated in ImageDescriptor.php:
After the resize is done and the file is closed I see:
while I assume this should be:
Also I'm not sure why tempnam() is called with "BewareOfGeeksBearingGifs" as directory, why not just use sys_get_temp_dir() for it?
The text was updated successfully, but these errors were encountered: