| 120 | } |
| 121 | |
| 122 | void mixStringObjectDigest(unsigned char *digest, robj *o) { |
| 123 | o = getDecodedObject(o); |
| 124 | mixDigest(digest,o->ptr,sdslen(o->ptr)); |
| 125 | decrRefCount(o); |
| 126 | } |
| 127 | |
| 128 | /* This function computes the digest of a data structure stored in the |
| 129 | * object 'o'. It is the core of the DEBUG DIGEST command: when taking the |
no test coverage detected