diff options
author | Roland Mainz <roland.mainz@nrubsig.org> | 2005-01-12 23:22:41 +0000 |
---|---|---|
committer | Roland Mainz <roland.mainz@nrubsig.org> | 2005-01-12 23:22:41 +0000 |
commit | 462e47e6b845a18569608e1d91a9c165a079b1a9 (patch) | |
tree | 9086799e7533f273f76c82bb5c48671fa7b94064 | |
parent | 235ff9f8c20d93b22b11cc378f7e53f20a058038 (diff) |
Bugzilla #1488 (https://bugs.freedesktop.org/show_bug.cgi?id=1488)XORG-6_8_1_902
attachment #1607 (https://bugs.freedesktop.org/attachment.cgi?id=1607):
Fix crash on i830 during startup.
Patch by Eric Anholt <anholt@FreeBSD.org>
-rw-r--r-- | src/i830_video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_video.c b/src/i830_video.c index 794aecfc..00012b54 100644 --- a/src/i830_video.c +++ b/src/i830_video.c @@ -632,7 +632,7 @@ I830SetupImageVideo(ScreenPtr pScreen) pPriv->gamma0 = 0x080808; /* gotta uninit this someplace */ - REGION_INIT(pScreen, &pPriv->clip, NullBox, 0); + REGION_NULL(pScreen, &pPriv->clip); pI830->adaptor = adapt; |