diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2007-10-12 18:18:00 -0400 |
---|---|---|
committer | Eamon Walsh <ewalsh@moss-charon.epoch.ncsc.mil> | 2007-10-12 18:19:44 -0400 |
commit | 526f40434c86548830c4f72940462b6253fe9790 (patch) | |
tree | bf84af3db7499f1bf73063ac94c0f38c4d31141b /render | |
parent | 6adeba17301a309be2f34cd51eca84a13d5503fd (diff) |
NULL is not a valid argument to CreatePicture, please use serverClient
as the client argument if no real client is creating the object.
Diffstat (limited to 'render')
-rw-r--r-- | render/mirect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/render/mirect.c b/render/mirect.c index 87767a76c..fa9dab80b 100644 --- a/render/mirect.c +++ b/render/mirect.c @@ -158,7 +158,7 @@ miCompositeRects (CARD8 op, tmpval[0] = xTrue; pSrc = CreatePicture (0, &pPixmap->drawable, rgbaFormat, - CPRepeat, tmpval, 0, &error); + CPRepeat, tmpval, serverClient, &error); if (!pSrc) goto bail4; |