mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-04 18:00:14 +01:00
randr: unref the provider shared pixmap the appropriate number of times
When an RandR shared pixmap is created in rrCreateSharedPixmap, it has a refcnt of 1. Then, PixmapShareToSlave bumps the refcnt to 2. However, there's no corresponding PixmapUnshareFromSlave where the refcnt can be decreased again, and there's no convenient common place where the refcnt can be decremented when the slave pixmap is destroyed. Fix this by just unreffing the pixmap twice in RRCrtcDetachScanoutPixmap. Signed-off-by: Aaron Plattner <aplattner@nvidia.com> Reviewed-by: Dave Airlie <airlied@redhat.com> Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
parent
c260ae1a0c
commit
e604b19fc5
1 changed files with 5 additions and 0 deletions
|
|
@ -372,6 +372,11 @@ RRCrtcDetachScanoutPixmap(RRCrtcPtr crtc)
|
|||
ret = pScrPriv->rrCrtcSetScanoutPixmap(crtc, NULL);
|
||||
if (crtc->scanout_pixmap) {
|
||||
master->StopPixmapTracking(mscreenpix, crtc->scanout_pixmap);
|
||||
/*
|
||||
* Unref the pixmap twice: once for the original reference, and once
|
||||
* for the reference implicitly added by PixmapShareToSlave.
|
||||
*/
|
||||
master->DestroyPixmap(crtc->scanout_pixmap->master_pixmap);
|
||||
master->DestroyPixmap(crtc->scanout_pixmap->master_pixmap);
|
||||
crtc->pScreen->DestroyPixmap(crtc->scanout_pixmap);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue