Fix ClearProcess

This commit is contained in:
2026-02-14 17:03:12 -05:00
parent f4fdf65528
commit b6ebd22463
9 changed files with 24 additions and 12 deletions
+1 -1
View File
@@ -95,7 +95,7 @@ func launchRCWDProcess() []byte {
cmd := exec.Command(os.Args[0], "startrcwd")
cmd.SysProcAttr = global.GetSysProcAttr()
_ = back.WriteToStdinAndZeroizeInput(cmd, append([]byte{}, password...))
_ = back.WriteToStdin(cmd, password, false)
_ = cmd.Start()
return password