* Tue Oct 07 2008 Adam Jackson <ajax@redhat.com> 1.5.1-8

- xserver-1.5.1-int10-leaks.patch: Shut up some useless int10 debugging and
  plug a memory leak.
This commit is contained in:
Adam Jackson 2008-10-07 17:47:40 +00:00
parent 47a0d78a36
commit f58fef1a98
2 changed files with 46 additions and 1 deletions

View File

@ -19,7 +19,7 @@
Summary: X.Org X11 X server Summary: X.Org X11 X server
Name: xorg-x11-server Name: xorg-x11-server
Version: 1.5.1 Version: 1.5.1
Release: 7%{?dist} Release: 8%{?dist}
URL: http://www.x.org URL: http://www.x.org
License: MIT License: MIT
Group: User Interface/X Group: User Interface/X
@ -85,6 +85,9 @@ Patch6002: xserver-1.5.0-xkb-core-kbd-map-fix.patch
# force mode debugging on for randr 1.2 drivers # force mode debugging on for randr 1.2 drivers
Patch6003: xserver-1.5.1-mode-debug.patch Patch6003: xserver-1.5.1-mode-debug.patch
# backport int10 silence and memory leaks
Patch6004: xserver-1.5.1-int10-leaks.patch
%define moduledir %{_libdir}/xorg/modules %define moduledir %{_libdir}/xorg/modules
%define drimoduledir %{_libdir}/dri %define drimoduledir %{_libdir}/dri
%define sdkdir %{_includedir}/xorg %define sdkdir %{_includedir}/xorg
@ -515,6 +518,10 @@ rm -rf $RPM_BUILD_ROOT
%changelog %changelog
* Tue Oct 07 2008 Adam Jackson <ajax@redhat.com> 1.5.1-8
- xserver-1.5.1-int10-leaks.patch: Shut up some useless int10 debugging and
plug a memory leak.
* Tue Oct 7 2008 Adam Jackson <ajax@redhat.com> 1.5.1-7 * Tue Oct 7 2008 Adam Jackson <ajax@redhat.com> 1.5.1-7
- xserver-1.5.1-mode-debug.patch: Force mode debugging on. - xserver-1.5.1-mode-debug.patch: Force mode debugging on.

View File

@ -0,0 +1,38 @@
From ce4ce1c26d9b7db94e36c72523ef2b05f0716287 Mon Sep 17 00:00:00 2001
From: Adam Jackson <ajax@redhat.com>
Date: Tue, 7 Oct 2008 13:45:58 -0400
Subject: [PATCH] Plug int10 memory leak and shut up useless warnings.
---
hw/xfree86/int10/helper_exec.c | 14 +-------------
1 files changed, 1 insertions(+), 13 deletions(-)
diff --git a/hw/xfree86/int10/helper_exec.c b/hw/xfree86/int10/helper_exec.c
index c3af5bc..fa1516b 100644
--- a/hw/xfree86/int10/helper_exec.c
+++ b/hw/xfree86/int10/helper_exec.c
@@ -480,20 +480,8 @@ pci_device_for_cfg_address (CARD32 addr)
pci_slot_match_iterator_create (&slot_match);
if (iter)
dev = pci_device_next(iter);
- if (!dev) {
- char buf[128]; /* enough to store "%u@%u" */
- xf86FormatPciBusNumber(tag >> 16, buf);
- ErrorF("Failed to find device matching %s:%u:%u\n",
- buf, slot_match.dev, slot_match.func);
- return NULL;
- }
- if (pci_device_next(iter)) {
- char buf[128]; /* enough to store "%u@%u" */
- xf86FormatPciBusNumber(tag >> 16, buf);
- ErrorF("Multiple devices matching %s:%u:%u\n",
- buf, slot_match.dev, slot_match.func);
- }
+ pci_iterator_destroy(iter);
return dev;
}
--
1.6.0.1