mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
executor: Do not use S_LEN for memcpy
Sometimes it is implemented as a macro and `S_LEN` is treated as a single argument in this case.
This commit is contained in:
parent
09fe6185b7
commit
1801d44f53
@ -174,9 +174,9 @@ static int nlua_exec_luado_string(lua_State *const lstate) FUNC_ATTR_NONNULL_ALL
|
|||||||
} else {
|
} else {
|
||||||
lcmd = xmalloc(lcmd_len + 1);
|
lcmd = xmalloc(lcmd_len + 1);
|
||||||
}
|
}
|
||||||
memcpy(lcmd, S_LEN(DOSTART));
|
memcpy(lcmd, DOSTART, sizeof(DOSTART) - 1);
|
||||||
memcpy(lcmd + sizeof(DOSTART) - 1, str->data, str->size);
|
memcpy(lcmd + sizeof(DOSTART) - 1, str->data, str->size);
|
||||||
memcpy(lcmd + sizeof(DOSTART) - 1 + str->size, S_LEN(DOEND));
|
memcpy(lcmd + sizeof(DOSTART) - 1 + str->size, DOEND, sizeof(DOEND) - 1);
|
||||||
#undef DOSTART
|
#undef DOSTART
|
||||||
#undef DOEND
|
#undef DOEND
|
||||||
|
|
||||||
@ -325,7 +325,7 @@ static int nlua_eval_lua_string(lua_State *const lstate)
|
|||||||
} else {
|
} else {
|
||||||
lcmd = xmalloc(lcmd_len);
|
lcmd = xmalloc(lcmd_len);
|
||||||
}
|
}
|
||||||
memcpy(lcmd, S_LEN(EVALHEADER));
|
memcpy(lcmd, EVALHEADER, sizeof(EVALHEADER) - 1);
|
||||||
memcpy(lcmd + sizeof(EVALHEADER) - 1, str->data, str->size);
|
memcpy(lcmd + sizeof(EVALHEADER) - 1, str->data, str->size);
|
||||||
lcmd[lcmd_len - 1] = ')';
|
lcmd[lcmd_len - 1] = ')';
|
||||||
#undef EVALHEADER
|
#undef EVALHEADER
|
||||||
|
Loading…
Reference in New Issue
Block a user