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
Simplify read delimiter to use empty string in fuzz harness loop
Replaces the null character delimiter `-d $'\0'` with the simpler
empty string `-d ''` in the fuzzing harness build loop.
This changes leverages the Bash `read` builtin behavior to avoid
unnecessary complexity and improving script readability.
Based @EliahKagan's suggestion and feedback on:
#1901
0 commit comments