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
ss v0.9.0
- Add unveil(2) support when built for OpenBSD
- Pledge promises are reduced from the original set where possible
- A crash during chpass OpenBSD was fixed by removing a chmod call
Don't reassign io.ReadFull error after Seal
Similar to the previous commit, we shadow the error in the l > 0
branch during encryption so that the outside error returned by
io.ReadFull is not overwritten.
Don't reassign io.ReadFull error during Open
The error inside the l > 0 branch is now shadowed, so as to not
reassign and lose the error return from io.ReadFull. This prevents
io.ReadFull from needing to error twice (once with data, the next
without) before Decrypt returns.