diff options
author | Ben Byer <bbyer@bbyer.local> | 2007-12-07 21:55:42 -0800 |
---|---|---|
committer | Jeremy Huddleston <jeremy@yuffie.local> | 2007-12-07 22:40:00 -0800 |
commit | 1157cfcc5a4e2a7299a4c48df04a1cc8d5093906 (patch) | |
tree | 748668ec929eae7d338d2af82408c6fdfa095741 /miext/rootless | |
parent | 0ad1c359c5b0be63748f5c630c97be88a8cc92ce (diff) |
Just a couple of small uninitialized pointer fixes
(cherry picked from commit d12b650362da100ceaecb7e859cd4ef1908d4407)
Diffstat (limited to 'miext/rootless')
-rw-r--r-- | miext/rootless/rootlessScreen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/miext/rootless/rootlessScreen.c b/miext/rootless/rootlessScreen.c index 538b698c8..19dba6e5e 100644 --- a/miext/rootless/rootlessScreen.c +++ b/miext/rootless/rootlessScreen.c @@ -722,6 +722,8 @@ Bool RootlessInit(ScreenPtr pScreen, RootlessFrameProcsPtr procs) pScreen->devPrivates[rootlessScreenPrivateIndex].ptr; s->imp = procs; + s->colormap = NULL; + s->redisplay_expired = FALSE; RootlessWrap(pScreen); |