Hello community, here is the log from the commit of package tcpd checked in at Wed May 31 02:56:23 CEST 2006. -------- --- tcpd/tcpd.changes 2006-03-31 15:58:57.000000000 +0200 +++ tcpd/tcpd.changes 2006-05-30 17:01:01.000000000 +0200 @@ -1,0 +2,5 @@ +Tue May 30 16:59:21 CEST 2006 - lmichnovic@suse.cz + +- fixed uninitilized filepointer (uninitialized.diff) [#178636] + +------------------------------------------------------------------- New: ---- tcp_wrappers_7.6-uninitialized.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tcpd.spec ++++++ --- /var/tmp/diff_new_pack.CtWFk8/_old 2006-05-31 02:56:09.000000000 +0200 +++ /var/tmp/diff_new_pack.CtWFk8/_new 2006-05-31 02:56:09.000000000 +0200 @@ -17,7 +17,7 @@ Provides: nkitb:/usr/sbin/tcpd Autoreqprov: on Version: 7.6 -Release: 725 +Release: 731 Summary: A security wrapper for TCP daemons Source: tcp_wrappers_%{version}.tar.bz2 Patch: tcp_wrappers_%{version}.dif @@ -34,6 +34,7 @@ Patch11: tcp_wrappers_7.6-nonvoid.diff Patch12: tcp_wrappers_7.6-prototypes.diff Patch13: tcp_wrappers_7.6-hosts_ctl.diff +Patch14: tcp_wrappers_7.6-uninitialized.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -76,6 +77,7 @@ %patch11 %patch12 -p1 %patch13 +%patch14 %build #RPM_OPT_FLAGS="$RPM_OPT_FLAGS -fPIE -Wformat=2" @@ -122,6 +124,8 @@ %{_libdir}/libwrap.so %changelog -n tcpd +* Tue May 30 2006 - lmichnovic@suse.cz +- fixed uninitilized filepointer (uninitialized.diff) [#178636] * Fri Mar 31 2006 - lmichnovic@suse.cz - fixed missing definition of hosts_ctl() in tcpd.h (hosts_ctl.diff) [#162303] ++++++ tcp_wrappers_7.6-uninitialized.diff ++++++ --- inetcf.c +++ inetcf.c @@ -61,7 +61,7 @@ char *conf; { char buf[BUFSIZ]; - FILE *fp; + FILE *fp = NULL; char *service; char *protocol; char *user; ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun...