summaryrefslogtreecommitdiff
path: root/debian/patches/Fix_glibc_program_invocation_name_pointer_overlap.diff
blob: 034bf292b8240fa2b7280956e221886d1a0930de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Description: Avoid SIGABRT if program_invocation_short_name is a pointer within progam_invocation_short_name
Bug: https://github.com/elogind/elogind/issues/92

--- a/src/shared/musl_missing.c
+++ b/src/shared/musl_missing.c
@@ -26,14 +26,14 @@
 #if HAVE_PROGRAM_INVOCATION_NAME == 0
 char *program_invocation_name       = NULL;
 char *program_invocation_short_name = NULL;
-#endif // libc does not provide these variables
 
-const char *program_arg_name = NULL;
+const char *program_arg_name = NULL; /* Helper */
+#endif // libc does not provide program_invocation_[short_]name
 
 #include "musl_missing.h"
 
+#if HAVE_PROGRAM_INVOCATION_NAME == 0
 static void elogind_free_program_name(void) {
-
         if (program_invocation_name && (program_invocation_name != program_arg_name) && strlen(program_invocation_name))
                 program_invocation_name       = mfree(program_invocation_name);
         if (program_invocation_short_name && (program_invocation_short_name != program_arg_name) && strlen(program_invocation_short_name))
@@ -55,8 +55,11 @@
                 program_invocation_name       = strdup(program_arg_name);
         if (NULL == program_invocation_short_name)
                 program_invocation_short_name = strdup(basename(program_arg_name));
-#if HAVE_PROGRAM_INVOCATION_NAME == 0
         atexit(elogind_free_program_name);
-#endif // libc does not provide these variables
 }
+#else
+void elogind_set_program_name(const char* pcall) {
+        assert(pcall && pcall[0]);
+}
+#endif // libc does not provide program_invocation_[short_]name