From 0c848c6cfdb7e1eb7297526390f899b7a36057c5 Mon Sep 17 00:00:00 2001 From: Gustavo Pichorim Boiko Date: Thu, 2 Aug 2007 18:09:52 -0300 Subject: [PATCH] Allocate the right number of entries for saving crtcs --- hw/xfree86/modes/xf86RandR12.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/xfree86/modes/xf86RandR12.c b/hw/xfree86/modes/xf86RandR12.c index 889be6f..9d74e53 100644 --- a/hw/xfree86/modes/xf86RandR12.c +++ b/hw/xfree86/modes/xf86RandR12.c @@ -716,7 +716,7 @@ xf86RandR12CrtcSet (ScreenPtr pScreen, xf86CrtcPtr *save_crtcs; Bool save_enabled = crtc->enabled; - save_crtcs = ALLOCATE_LOCAL(config->num_crtc * sizeof (xf86CrtcPtr)); + save_crtcs = ALLOCATE_LOCAL(config->num_output * sizeof (xf86CrtcPtr)); if ((randr_mode != NULL) != crtc->enabled) changed = TRUE; else if (randr_mode && !xf86RandRModeMatches (randr_mode, &crtc->mode)) -- 1.5.2.4