[PATCH] Allocate the right number of entries for saving crtcs

This commit is contained in:
Gustavo Pichorim Boiko 2007-08-02 18:09:52 -03:00 committed by Keith Packard
parent b2dcfbca24
commit 2926cf1da7

View File

@ -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))