|
$f = fopen(tempnam(sys_get_temp_dir(), "fnt"), "rb+"); |
That code leads to left over files under sys tmp dir - what might be a problem under docker where no systemd is cleaning up.
Proposed fix:
Unlink directly after fopen - works at least under linux since the file handle is kept as long as needed.
php-font-lib/src/FontLib/BinaryStream.php
Line 109 in 9b42ff4
That code leads to left over files under sys tmp dir - what might be a problem under docker where no systemd is cleaning up.
Proposed fix:
Unlink directly after fopen - works at least under linux since the file handle is kept as long as needed.