| 522 | } |
| 523 | |
| 524 | void *dictFetchValue(dict *d, const void *key) { |
| 525 | dictEntry *he; |
| 526 | |
| 527 | he = dictFind(d,key); |
| 528 | return he ? dictGetVal(he) : NULL; |
| 529 | } |
| 530 | |
| 531 | /* A fingerprint is a 64 bit number that represents the state of the dictionary |
| 532 | * at a given time, it's just a few dict properties xored together. |
no test coverage detected