Fix potential memory leak due to not calling imagedestroy on GdImage objects

pull/4643/head
Emelia Smith 2 years ago
parent e286f98762
commit 74ad26fee6
No known key found for this signature in database

@ -120,6 +120,9 @@ class InstanceService
$pixels[] = $row; $pixels[] = $row;
} }
// Free the allocated GdImage object from memory:
imagedestroy($image);
$components_x = 4; $components_x = 4;
$components_y = 4; $components_y = 4;
$blurhash = Blurhash::encode($pixels, $components_x, $components_y); $blurhash = Blurhash::encode($pixels, $components_x, $components_y);

@ -44,6 +44,9 @@ class Blurhash {
$pixels[] = $row; $pixels[] = $row;
} }
// Free the allocated GdImage object from memory:
imagedestroy($image);
$components_x = 4; $components_x = 4;
$components_y = 4; $components_y = 4;
$blurhash = BlurhashEngine::encode($pixels, $components_x, $components_y); $blurhash = BlurhashEngine::encode($pixels, $components_x, $components_y);
@ -53,4 +56,4 @@ class Blurhash {
return $blurhash; return $blurhash;
} }
} }

Loading…
Cancel
Save