Merge branch 'main' into revert/component-types

This commit is contained in:
pascal
2026-08-20 17:26:37 +02:00
29 changed files with 107 additions and 105 deletions
+2 -1
View File
@@ -3,6 +3,7 @@
package server
import (
"errors"
"fmt"
"os"
"path"
@@ -69,7 +70,7 @@ func setStdHandle(f *os.File) error {
handle := f.Fd()
r0, _, e1 := setStdHandleFn.Call(stdErrorHandle, handle)
if r0 == 0 {
if e1 != nil {
if !errors.Is(e1, syscall.Errno(0)) {
return e1
}
return syscall.EINVAL