rpms/tcp_wrappers/devel tcp_wrappers-7.6-162412.patch, NONE, 1.1 tcp_wrappers.spec, 1.16, 1.17

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Tue Jan 24 14:41:39 UTC 2006


Author: twoerner

Update of /cvs/dist/rpms/tcp_wrappers/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv3947

Modified Files:
	tcp_wrappers.spec 
Added Files:
	tcp_wrappers-7.6-162412.patch 
Log Message:
[tw] - fixed uninitialized fp in function inet_cfg (#162412)



tcp_wrappers-7.6-162412.patch:
 inetcf.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE tcp_wrappers-7.6-162412.patch ---
--- tcp_wrappers_7.6/inetcf.c.162412	2006-01-24 15:33:20.000000000 +0100
+++ tcp_wrappers_7.6/inetcf.c	2006-01-24 15:35:44.000000000 +0100
@@ -61,7 +61,7 @@
 char   *conf;
 {
     char    buf[BUFSIZ];
-    FILE   *fp;
+    FILE   *fp = NULL;
     char   *service;
     char   *protocol;
     char   *user;


Index: tcp_wrappers.spec
===================================================================
RCS file: /cvs/dist/rpms/tcp_wrappers/devel/tcp_wrappers.spec,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- tcp_wrappers.spec	9 Dec 2005 22:43:32 -0000	1.16
+++ tcp_wrappers.spec	24 Jan 2006 14:41:36 -0000	1.17
@@ -1,7 +1,7 @@
 Summary: A security tool which acts as a wrapper for TCP daemons.
 Name: tcp_wrappers
 Version: 7.6
-Release: 39.1
+Release: 40
 
 %define LIB_MAJOR 0
 %define LIB_MINOR 7
@@ -26,6 +26,7 @@
 Patch13: tcp_wrappers-7.6-strerror.patch
 Patch14: tcp_wrappers-7.6-ldflags.patch
 Patch15: tcp_wrappers-7.6-fix_sig-bug141110.patch
+Patch16: tcp_wrappers-7.6-162412.patch
 # required by sin_scope_id in ipv6 patch
 BuildPreReq: glibc-devel >= 2.2		
 BuildRoot: %{_tmppath}/%{name}-root
@@ -57,6 +58,7 @@
 %patch13 -p1 -b .strerror
 %patch14 -p1 -b .cflags
 %patch15 -p1 -b .fix_sig
+%patch16 -p1 -b .162412
 
 %build
 make RPM_OPT_FLAGS="$RPM_OPT_FLAGS -fPIC -DPIC -D_REENTRANT -DHAVE_STRERROR" LDFLAGS="-pie" MAJOR=%{LIB_MAJOR} MINOR=%{LIB_MINOR} REL=%{LIB_REL} linux
@@ -104,6 +106,9 @@
 %{_sbindir}/*
 
 %changelog
+* Tue Jan 24 2006 Thomas Woerner <twoerner at redhat.com> 7.6-40
+- fixed uninitialized fp in function inet_cfg (#162412)
+
 * Fri Dec 09 2005 Jesse Keating <jkeating at redhat.com>
 - rebuilt
 




More information about the fedora-cvs-commits mailing list