Reject + sign when checking -ipcfd

This commit is contained in:
MarcoFalke 2025-05-15 21:10:31 +02:00
parent fa479857ed
commit fa123afa0e
No known key found for this signature in database

View File

@ -55,9 +55,11 @@ public:
// in combination with other arguments because the parent process
// should be able to control the child process through the IPC protocol
// without passing information out of band.
if (!ParseInt32(argv[2], &fd)) {
const auto maybe_fd{ToIntegral<int32_t>(argv[2])};
if (!maybe_fd) {
throw std::runtime_error(strprintf("Invalid -ipcfd number '%s'", argv[2]));
}
fd = *maybe_fd;
return true;
}
int connect(const fs::path& data_dir,