Hello community, here is the log from the commit of package module-init-tools checked in at Fri Jun 29 14:15:33 CEST 2007. -------- --- module-init-tools/module-init-tools.changes 2007-06-21 11:35:46.000000000 +0200 +++ /mounts/work_src_done/STABLE/module-init-tools/module-init-tools.changes 2007-06-29 12:42:56.000000000 +0200 @@ -1,0 +2,5 @@ +Fri Jun 29 12:42:37 CEST 2007 - mmarek@suse.cz + +- fixed a segfault in insmod [#287493] + +------------------------------------------------------------------- New: ---- insmod-segfault.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ module-init-tools.spec ++++++ --- /var/tmp/diff_new_pack.o16447/_old 2007-06-29 14:15:19.000000000 +0200 +++ /var/tmp/diff_new_pack.o16447/_new 2007-06-29 14:15:19.000000000 +0200 @@ -14,7 +14,7 @@ BuildRequires: zlib-devel # it's 3.3-pre11 actually Version: 3.2.99.pre11 -Release: 1 +Release: 3 %define ver 3.3-pre11 License: GNU General Public License (GPL) Group: System/Kernel @@ -46,6 +46,7 @@ Patch12: module-init-tools-skip-unsupported.diff Patch13: module-init-tools-blacklist-warn.diff Patch15: module-init-tools-options-priority.diff +Patch16: insmod-segfault.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -75,6 +76,7 @@ %patch12 %patch13 %patch15 +%patch16 %build autoreconf --force --install @@ -126,6 +128,8 @@ /etc/modprobe.d %changelog +* Fri Jun 29 2007 - mmarek@suse.cz +- fixed a segfault in insmod [#287493] * Thu Jun 21 2007 - mmarek@suse.cz - updated to 3.3-pre11 * /etc/depmod.conf support (obsoletes depmod*.diff) ++++++ insmod-segfault.diff ++++++ --- insmod.c.orig +++ insmod.c @@ -116,7 +116,10 @@ int main(int argc, char *argv[]) exit(1); } - (p = strrchr(argv[0], '/')) ? p++ : argv[0]; + if ((p = strrchr(argv[0], '/'))) + p++; + else + p = argv[0]; if (strstr(p, "insmod.static")) try_old_version("insmod.static", argv); else ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de