mirror of
https://git.freebsd.org/ports.git
synced 2025-06-30 09:00:33 -04:00
This update addresses a crash in lightdm, related to the way the user environment for the lightdm process is setup in src/process.c. The configuration option in lightdm.conf for locked memory is now honoured - the default configuration has been updated to disable this, and pkg-message has been updated to reflect this change. Changes this release: https://github.com/CanonicalLtd/lightdm/releases/tag/1.30.0 PR: 238083 Submitted by: madpilot Reported by: David.Boyd49@twc.com Differential Revision: https://reviews.freebsd.org/D20541
11 lines
244 B
C
11 lines
244 B
C
--- src/process.c.orig 2018-08-30 00:28:55 UTC
|
|
+++ src/process.c
|
|
@@ -73,6 +73,8 @@ static GHashTable *processes = NULL;
|
|
static pid_t signal_pid;
|
|
static int signal_pipe[2];
|
|
|
|
+extern char **environ;
|
|
+
|
|
Process *
|
|
process_get_current (void)
|
|
{
|