diff options
Diffstat (limited to 'src/radeon_video.c')
-rw-r--r-- | src/radeon_video.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/radeon_video.c b/src/radeon_video.c index e08d8e00..fc321184 100644 --- a/src/radeon_video.c +++ b/src/radeon_video.c @@ -144,7 +144,7 @@ void RADEONInitVideo(ScreenPtr pScreen) num_adaptors = xf86XVListGenericAdaptors(pScrn, &adaptors); newAdaptors = malloc((num_adaptors + 2) * sizeof(*newAdaptors)); - if (newAdaptors == NULL) + if (!newAdaptors) return; memcpy(newAdaptors, adaptors, num_adaptors * sizeof(XF86VideoAdaptorPtr)); @@ -152,7 +152,7 @@ void RADEONInitVideo(ScreenPtr pScreen) if (info->use_glamor) { texturedAdaptor = radeon_glamor_xv_init(pScreen, 16); - if (texturedAdaptor != NULL) { + if (texturedAdaptor) { adaptors[num_adaptors++] = texturedAdaptor; xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Set up textured video (glamor)\n"); } else @@ -161,7 +161,7 @@ void RADEONInitVideo(ScreenPtr pScreen) || (info->directRenderingEnabled) ) { texturedAdaptor = RADEONSetupImageTexturedVideo(pScreen); - if (texturedAdaptor != NULL) { + if (texturedAdaptor) { adaptors[num_adaptors++] = texturedAdaptor; xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Set up textured video\n"); } else |