commit dosemu for openSUSE:Factory
Hello community, here is the log from the commit of package dosemu for openSUSE:Factory checked in at Sat Jun 20 05:53:53 CEST 2009. -------- --- dosemu/dosemu.changes 2008-10-17 08:52:51.000000000 +0200 +++ dosemu/dosemu.changes 2009-06-18 12:09:43.000000000 +0200 @@ -1,0 +2,5 @@ +Thu Jun 18 12:08:04 CEST 2009 - snwint@suse.de + +- David Binderman: fix loop bounds (bnc #512168) + +------------------------------------------------------------------- calling whatdependson for head-i586 New: ---- dosemu-1.4.0-sizeof.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dosemu.spec ++++++ --- /var/tmp/diff_new_pack.C20676/_old 2009-06-20 05:52:22.000000000 +0200 +++ /var/tmp/diff_new_pack.C20676/_new 2009-06-20 05:52:22.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package dosemu (Version 1.4.0.1) # -# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -25,13 +25,14 @@ Group: System/Emulators/PC AutoReqProv: on Version: 1.4.0.1 -Release: 59 +Release: 60 Summary: The DOS Emulator Source: dosemu-1.4.0.tgz Source1: dosemu-freedos-bin.tgz Patch: dosemu-1.4.0.1.diff Patch1: dosemu-1.4.0-open.diff Patch2: dosemu-1.4.0-destbufferoverflow.patch +Patch3: dosemu-1.4.0-sizeof.diff Url: http://www.dosemu.org BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -132,6 +133,7 @@ %patch -p1 %patch1 %patch2 +%patch3 %build %configure --sysconfdir=%{_sysconfdir}/%{name} --with-docdir=%{_docdir}/dosemu \ @@ -164,6 +166,8 @@ %config(noreplace) %{_sysconfdir}/dosemu/drives/d %changelog +* Thu Jun 18 2009 snwint@suse.de +- David Binderman: fix loop bounds (bnc #512168) * Fri Oct 17 2008 olh@suse.de - add ExclusiveArch x86 x86_64 * Thu Oct 09 2008 crrodriguez@suse.de @@ -428,7 +432,7 @@ - deleted double entry for %%files * Thu Nov 26 1998 ke@suse.de - remove "/" from inst scripts. -* Wed Nov 18 1998 bs@suse.de +* Tue Nov 17 1998 bs@suse.de - Update to 0.98.3 * Tue Aug 18 1998 ke@suse.de - mkdexe: add security patch (marc and werner). ++++++ dosemu-1.4.0-sizeof.diff ++++++ --- src/plugin/X/X_keymaps.c +++ src/plugin/X/X_keymaps.c @@ -137,7 +137,7 @@ pkey = key; } else { /* print spaces instead of \0's */ - for (i = 0; i < sizeof(ckey); i++) if (!ckey[i]) ckey[i] = ' '; + for (i = 0; i < sizeof ckey / sizeof *ckey; i++) if (!ckey[i]) ckey[i] = ' '; mismatch++; score -= syms; } ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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