|
From: Dave H. <hel...@us...> - 2012-07-29 22:03:13
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SFCB - Small Footprint CIM Broker".
The branch, master has been updated
via d10ba60839074447d983d4d89d2ae03d0dd01998 (commit)
from 057ca4d6726a9456e05c9642671a45beea34266e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit d10ba60839074447d983d4d89d2ae03d0dd01998
Author: Dave Heller <hel...@us...>
Date: Sun Jul 29 17:38:39 2012 -0400
[ 3541554 ] insecure LD_LIBRARY_PATH usage
-----------------------------------------------------------------------
Summary of changes:
diff --git a/ChangeLog b/ChangeLog
index c96d50d..a5e21f0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2012-07-29 Dave Heller <hel...@us...>
+
+ * sfcb.init-none.in, sfcb.init-redhat.in, sfcb.init-suse.in:
+ [ 3541554 ] insecure LD_LIBRARY_PATH usage
+
+2012-07-20 Dave Heller <hel...@us...>
+
+ * classProviderGz.c:
+ [ 3527714 ] Every other EnumerateClasses fails
+
2012-07-10 Michael Chase-Salerno <br...@li...>
* test/stageschema.sh, test/schema/root/interop2/*:
diff --git a/NEWS b/NEWS
index bc906d3..9b24c34 100644
--- a/NEWS
+++ b/NEWS
@@ -15,6 +15,8 @@ Bugs fixed:
- 2966659 Cleanup https daemon remnants
- 3527674 Faster Startup
- 3529879 Fixes for sfcb-ps test script
+- 3527714 Every other EnumerateClasses fails
+- 3541554 insecure LD_LIBRARY_PATH usage
Changes in 1.4.2
================
diff --git a/sfcb.init-none.in b/sfcb.init-none.in
index b777237..8499c87 100644
--- a/sfcb.init-none.in
+++ b/sfcb.init-none.in
@@ -6,10 +6,10 @@
echo $PATH | grep -q @sbindir@ ||PATH=@sbindir@:$PATH
-if [ -z "$LD_LIBRARY_PATH" ] || echo $LD_LIBRARY_PATH | grep -qv @libdir@
+if [ -z "$LD_LIBRARY_PATH" ] || echo $LD_LIBRARY_PATH | grep -qv '@libdir@[/]*\($\|[:]\)'
then
- LD_LIBRARY_PATH=@libdir@:$LD_LIBRARY_PATH
- export LD_LIBRARY_PATH
+ LD_LIBRARY_PATH=@libdir@${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
+ export LD_LIBRARY_PATH
fi
start() {
diff --git a/sfcb.init-redhat.in b/sfcb.init-redhat.in
index 111c022..4f1b25c 100644
--- a/sfcb.init-redhat.in
+++ b/sfcb.init-redhat.in
@@ -15,10 +15,10 @@
echo $PATH | grep -q @sbindir@ ||PATH=@sbindir@:$PATH
-if [ -z "$LD_LIBRARY_PATH" ] || echo $LD_LIBRARY_PATH | grep -qv @libdir@
+if [ -z "$LD_LIBRARY_PATH" ] || echo $LD_LIBRARY_PATH | grep -qv '@libdir@[/]*\($\|[:]\)'
then
- LD_LIBRARY_PATH=@libdir@:$LD_LIBRARY_PATH
- export LD_LIBRARY_PATH
+ LD_LIBRARY_PATH=@libdir@${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
+ export LD_LIBRARY_PATH
fi
start() {
diff --git a/sfcb.init-suse.in b/sfcb.init-suse.in
index 2d2dbb3..0847d11 100644
--- a/sfcb.init-suse.in
+++ b/sfcb.init-suse.in
@@ -15,10 +15,10 @@
echo $PATH | grep -q @sbindir@ ||PATH=@sbindir@:$PATH
-if [ -z "$LD_LIBRARY_PATH" ] || echo $LD_LIBRARY_PATH | grep -qv @libdir@
+if [ -z "$LD_LIBRARY_PATH" ] || echo $LD_LIBRARY_PATH | grep -qv '@libdir@[/]*\($\|[:]\)'
then
- LD_LIBRARY_PATH=@libdir@:$LD_LIBRARY_PATH
- export LD_LIBRARY_PATH
+ LD_LIBRARY_PATH=@libdir@${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
+ export LD_LIBRARY_PATH
fi
start() {
hooks/post-receive
--
SFCB - Small Footprint CIM Broker
|