fix recover error

This commit is contained in:
yihaoDeng 2023-07-13 16:09:34 +08:00
parent 9434b4eaac
commit 1307776786
1 changed files with 1 additions and 1 deletions

View File

@ -883,7 +883,7 @@ int32_t decodeValueFunc(void* value, int32_t vlen, int64_t* ttl, char** dest) {
SStreamValue key = {0};
char* p = value;
if (streamStateValueIsStale(p)) {
*dest = NULL;
if (dest != NULL) *dest = NULL;
return -1;
}
p = taosDecodeFixedI64(p, &key.unixTimestamp);