tmux: Include <stdlib.h> for getprogname()
After switching to unified headers, <stdlib.h> was not included indirectly in compat/setproctitle.c. This caused it to be implicitly declared to return int and caused a segfault.
This commit is contained in:
parent
fcf9ddc3d6
commit
2b72c3920e
13
packages/tmux/compat-setproctitle.c.patch
Normal file
13
packages/tmux/compat-setproctitle.c.patch
Normal file
@ -0,0 +1,13 @@
|
||||
diff -u -r ../tmux-2.5/compat/setproctitle.c ./compat/setproctitle.c
|
||||
--- ../tmux-2.5/compat/setproctitle.c 2017-04-28 15:43:11.000000000 +0200
|
||||
+++ ./compat/setproctitle.c 2017-07-02 11:16:40.393826133 +0200
|
||||
@@ -18,6 +18,9 @@
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
+#ifdef __ANDROID__
|
||||
+# include <stdlib.h> /* For getprogname() */
|
||||
+#endif
|
||||
|
||||
#include "compat.h"
|
||||
|
Loading…
Reference in New Issue
Block a user