base: stability fixes — acpid EC, inputd, block driver, ipcd UDS, netstack loopback, ptyd, ramfs, randd, scheme-utils blocking

This commit is contained in:
Red Bear OS
2026-07-09 23:54:10 +03:00
parent 9f3f77cb72
commit 417fe4a4fa
11 changed files with 241 additions and 63 deletions
+5 -1
View File
@@ -383,7 +383,11 @@ impl SchemeSync for InputScheme {
log::error!("display tried to write");
return Err(SysError::new(EINVAL));
}
Handle::Producer => {}
Handle::Producer { .. } => {
// Producers send input events TO the inputd daemon, not the
// other way around. Writing to a Producer handle is invalid.
return Err(SysError::new(EINVAL));
}
Handle::SchemeRoot => return Err(SysError::new(EBADF)),
}