mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-25 10:40:25 +00:00
randr: check for malloc failure
This commit is contained in:
@@ -120,6 +120,10 @@ xf86CrtcCreate (ScrnInfoPtr scrn,
|
||||
/* Preallocate gamma at a sensible size. */
|
||||
crtc->gamma_size = 256;
|
||||
crtc->gamma_red = malloc(3 * crtc->gamma_size * sizeof (CARD16));
|
||||
if (!crtc->gamma_red) {
|
||||
xfree (crtc);
|
||||
return NULL;
|
||||
}
|
||||
crtc->gamma_green = crtc->gamma_red + crtc->gamma_size;
|
||||
crtc->gamma_blue = crtc->gamma_green + crtc->gamma_size;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user