Commit f2792059 authored by Uwe Bonnes's avatar Uwe Bonnes Committed by Alexandre Julliard

Fixed off by one error in HANDLE_GetObjPtr.

parent 4ba574d6
...@@ -155,7 +155,7 @@ K32OBJ *HANDLE_GetObjPtr( PDB32 *pdb, HANDLE32 handle, ...@@ -155,7 +155,7 @@ K32OBJ *HANDLE_GetObjPtr( PDB32 *pdb, HANDLE32 handle,
K32OBJ *ptr = NULL; K32OBJ *ptr = NULL;
SYSTEM_LOCK(); SYSTEM_LOCK();
if ((handle > 0) && (handle <= pdb->handle_table->count)) if ((handle > 0) && (handle < pdb->handle_table->count))
{ {
HANDLE_ENTRY *entry = &pdb->handle_table->entries[handle]; HANDLE_ENTRY *entry = &pdb->handle_table->entries[handle];
if ((entry->access & access) != access) if ((entry->access & access) != access)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment