| 367 | } |
| 368 | |
| 369 | void CLKeySearchDevice::removeTargetFromList(const unsigned int hash[5]) |
| 370 | { |
| 371 | size_t count = _targetList.size(); |
| 372 | |
| 373 | while(count) { |
| 374 | if(memcmp(hash, _targetList[count - 1].h, 20) == 0) { |
| 375 | _targetList.erase(_targetList.begin() + count - 1); |
| 376 | return; |
| 377 | } |
| 378 | count--; |
| 379 | } |
| 380 | } |
| 381 | |
| 382 | |
| 383 | void CLKeySearchDevice::getResultsInternal() |
nothing calls this directly
no outgoing calls
no test coverage detected