Module Name: xsrc Committed By: tsutsui Date: Sun Jul 26 07:35:37 UTC 2020
Modified Files: xsrc/external/mit/xorg-server/dist/hw/sun: sunFbs.c Log Message: Explicitly initialize origColormapValid for readability. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/xorg-server/dist/hw/sun/sunFbs.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: xsrc/external/mit/xorg-server/dist/hw/sun/sunFbs.c diff -u xsrc/external/mit/xorg-server/dist/hw/sun/sunFbs.c:1.2 xsrc/external/mit/xorg-server/dist/hw/sun/sunFbs.c:1.3 --- xsrc/external/mit/xorg-server/dist/hw/sun/sunFbs.c:1.2 Sun Jul 26 07:20:50 2020 +++ xsrc/external/mit/xorg-server/dist/hw/sun/sunFbs.c Sun Jul 26 07:35:37 2020 @@ -141,6 +141,7 @@ sunScreenAllocate(ScreenPtr pScreen) if (!pPrivate) return FALSE; + pPrivate->origColormapValid = FALSE; sunSetScreenPrivate(pScreen, pPrivate); return TRUE; }