mirror of https://github.com/FreeRDP/FreeRDP
Use fnObjectEquals in ArrayList_Remove.
This commit is contained in:
parent
8871d55589
commit
2497fcf941
|
@ -305,7 +305,7 @@ BOOL ArrayList_Remove(wArrayList *arrayList, void *obj)
|
|||
|
||||
for (index = 0; index < arrayList->size; index++)
|
||||
{
|
||||
if (arrayList->array[index] == obj)
|
||||
if (arrayList->object.fnObjectEquals(arrayList->array[index], obj))
|
||||
{
|
||||
found = TRUE;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue