From 221548ea735d938b83f081a654ba93fbb0de747a Mon Sep 17 00:00:00 2001 From: Josh Bressers Date: Wed, 14 Dec 2005 01:48:24 +0000 Subject: [PATCH] * Fedora Bug #163760: sbr/context_read.c (context_read): Ensure that the context is only read once. --- ChangeLog | 5 +++++ sbr/context_read.c | 7 +++++++ 2 files changed, 12 insertions(+) diff --git a/ChangeLog b/ChangeLog index bcea34a3..3ade10b8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-12-13 Michael Forrest + + * Fedora Bug #163760: sbr/context_read.c (context_read): Ensure that + the context is only read once. + 2005-12-12 Josh Bressers * uip/sendsbr.c (annoaux): Fix the call to annotate() fixing a bug diff --git a/sbr/context_read.c b/sbr/context_read.c index 6a1eea12..32051c52 100644 --- a/sbr/context_read.c +++ b/sbr/context_read.c @@ -38,6 +38,13 @@ context_read (void) register struct passwd *pw; /* getpwuid() results */ register FILE *ib; /* profile and context file pointer */ + /* + * If this routine _is_ called again (despite the wanings in the + * comments above), return immediately. + */ + if ( m_defs != 0 ) + return; + /* * Find user's home directory. Try the HOME environment variable first, * the home directory field in the password file if that's not found. -- 2.39.5