Simplify arithmetic expression on LP_REPLACE case in lpinsert (#6327)

Remove unnecessary variable name.
This commit is contained in:
jimgreen2013 2022-07-13 00:24:59 +08:00 committed by GitHub
parent 693acc0114
commit 53e7de205f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -861,8 +861,7 @@ unsigned char *lpInsert(unsigned char *lp, unsigned char *elestr, unsigned char
if (where == LP_BEFORE) {
memmove(dst+enclen+backlen_size,dst,old_listpack_bytes-poff);
} else { /* LP_REPLACE. */
long lendiff = (enclen+backlen_size)-replaced_len;
memmove(dst+replaced_len+lendiff,
memmove(dst+enclen+backlen_size,
dst+replaced_len,
old_listpack_bytes-poff-replaced_len);
}