You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bump to v0.99.3: handle getcwd return on Ubuntu glibc
Real fix for the ubuntu-latest CI failure that v0.99.1 / v0.99.2
diagnostic plumbing surfaced: Ubuntu's glibc declares getcwd with
warn_unused_result, so the existing line in main.c
getcwd(initial_dir, sizeof(initial_dir));
trips -Werror=unused-result. Capture the result and clear
initial_dir on failure -- best-effort so the rest of the binary
still launches if the lookup fails.
0 commit comments