Coverity #484: Fix an off-by-one in module refcounting.
This commit is contained in:
parent
6bb2dc02a7
commit
d8221a9b70
|
@ -6,6 +6,9 @@
|
||||||
* miext/cw/cw.c:
|
* miext/cw/cw.c:
|
||||||
Coverity #337: Remove useless NULL check.
|
Coverity #337: Remove useless NULL check.
|
||||||
|
|
||||||
|
* hw/xfree86/loader/loader.c:
|
||||||
|
Coverity #484: Fix an off-by-one in module refcounting.
|
||||||
|
|
||||||
2006-03-15 Benjamin Herrenschmidt <benh@kernel.crashing.org>
|
2006-03-15 Benjamin Herrenschmidt <benh@kernel.crashing.org>
|
||||||
|
|
||||||
* hw/xfree86/dri/dri.c: (DRIExtensionInit):
|
* hw/xfree86/dri/dri.c: (DRIExtensionInit):
|
||||||
|
|
|
@ -1446,7 +1446,7 @@ LoaderUnload(int handle)
|
||||||
loaderRec fakeHead;
|
loaderRec fakeHead;
|
||||||
loaderPtr tmp = &fakeHead;
|
loaderPtr tmp = &fakeHead;
|
||||||
|
|
||||||
if (handle < 0 || handle > MAX_HANDLE)
|
if (handle < 0 || handle >= MAX_HANDLE)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue