aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-11-24 22:52:36 +0100
committerdec05eba <dec05eba@protonmail.com>2024-11-24 22:52:36 +0100
commit26adb4d8189ddad7d33a74ba2f356ea97c288fd8 (patch)
tree3021285016a63fbea14432975e275da553c5220a /src
parentc08811c0f3234f834479c6eeb1fffaccc29b7f8e (diff)
Dont allow running the program as the root userHEADmaster
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 18ff526..39ed481 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -4323,6 +4323,11 @@ static void activate(GtkApplication *app, gpointer) {
int main(int argc, char **argv) {
setlocale(LC_ALL, "C");
+ if(geteuid() == 0) {
+ fprintf(stderr, "Error: don't run gpu-screen-recorder-gtk as the root user\n");
+ return 1;
+ }
+
dpy = XOpenDisplay(NULL);
gsr_info_exit_status = get_gpu_screen_recorder_info(&gsr_info);