mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-05 11:08:15 +02:00
Correct AGP memory deallocation argument on *BSD.
This fixes leaks and eventual crashes with RandR resizing on Intel.
This commit is contained in:
parent
cf46242e33
commit
002e28c12c
1 changed files with 5 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* Abstraction of the AGP GART interface.
|
||||
*
|
||||
* This version is for both Linux and FreeBSD.
|
||||
* This version is for Linux and Free/Open/NetBSD.
|
||||
*
|
||||
* Copyright © 2000 VA Linux Systems, Inc.
|
||||
* Copyright © 2001 The XFree86 Project, Inc.
|
||||
|
|
@ -264,7 +264,11 @@ xf86DeallocateGARTMemory(int screenNum, int key)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
#ifdef __linux__
|
||||
if (ioctl(gartFd, AGPIOC_DEALLOCATE, (int *)key) != 0) {
|
||||
#else
|
||||
if (ioctl(gartFd, AGPIOC_DEALLOCATE, &key) != 0) {
|
||||
#endif
|
||||
xf86DrvMsg(screenNum, X_WARNING,"xf86DeAllocateGARTMemory: "
|
||||
"deallocation gart memory with key %d failed\n\t(%s)\n",
|
||||
key, strerror(errno));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue