| 134 | } |
| 135 | |
| 136 | void mixStringObjectDigest(unsigned char *digest, robj_roptr o) { |
| 137 | o = getDecodedObject(o); |
| 138 | mixDigest(digest,ptrFromObj(o),sdslen(szFromObj(o))); |
| 139 | decrRefCount(o); |
| 140 | } |
| 141 | |
| 142 | /* This function computes the digest of a data structure stored in the |
| 143 | * object 'o'. It is the core of the DEBUG DIGEST command: when taking the |
no test coverage detected