mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
25 lines
741 B
C++
25 lines
741 B
C++
--- base/process/process_handle_freebsd.cc.orig 2024-04-15 20:33:42 UTC
|
|
+++ base/process/process_handle_freebsd.cc
|
|
@@ -3,6 +3,7 @@
|
|
// found in the LICENSE file.
|
|
|
|
#include "base/process/process_handle.h"
|
|
+#include "base/files/file_util.h"
|
|
|
|
#include <limits.h>
|
|
#include <stddef.h>
|
|
@@ -20,10 +21,13 @@ ProcessId GetParentProcessId(ProcessHandle process) {
|
|
|
|
ProcessId GetParentProcessId(ProcessHandle process) {
|
|
struct kinfo_proc info;
|
|
- size_t length;
|
|
+ size_t length = sizeof(struct kinfo_proc);
|
|
int mib[] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, process };
|
|
|
|
if (sysctl(mib, std::size(mib), &info, &length, NULL, 0) < 0)
|
|
+ return -1;
|
|
+
|
|
+ if (length < sizeof(struct kinfo_proc))
|
|
return -1;
|
|
|
|
return info.ki_ppid;
|