eliminate font fudge factors; fix size units in freetype backend; fix directory iteration lack-of-robustness-to-failed-dir-open

This commit is contained in:
Ryan Fleury
2025-05-11 13:27:59 -07:00
parent 6df96b7eef
commit 8b3f07c7b5
4 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -569,7 +569,7 @@ os_file_iter_next(Arena *arena, OS_FileIter *iter, OS_FileInfo *info_out)
{
B32 good = 0;
OS_LNX_FileIter *lnx_iter = (OS_LNX_FileIter *)iter->memory;
for(;;)
for(;lnx_iter->dir != 0;)
{
// rjf: get next entry
lnx_iter->dp = readdir(lnx_iter->dir);