1
0
Fork 0

Small improvement in lookup.

This commit is contained in:
Max Neunhoeffer 2014-04-01 10:01:56 +02:00
parent 59e314d2bd
commit 43c0e8f166
1 changed files with 1 additions and 1 deletions

View File

@ -438,7 +438,7 @@ void* TRI_LookupByElementMultiPointer (TRI_multi_pointer_t* array,
#endif
i = LookupByElement(array, element);
return (NULL != array->_table[i].ptr) ? array->_table[i].ptr : NULL;
return array->_table[i].ptr;
}
////////////////////////////////////////////////////////////////////////////////