mirror of
https://github.com/postgres/postgres.git
synced 2025-11-04 20:11:56 +03:00
Remove useless casts to (void *) in arguments of some system functions
The affected functions are: bsearch, memcmp, memcpy, memset, memmove, qsort, repalloc Reviewed-by: Corey Huinker <corey.huinker@gmail.com> Discussion: https://www.postgresql.org/message-id/flat/fd9adf5d-b1aa-e82f-e4c7-263c30145807%40enterprisedb.com
This commit is contained in:
@@ -67,9 +67,9 @@ plainnode(PLAINTREE *state, NODE *node)
|
||||
if (state->cur == state->len)
|
||||
{
|
||||
state->len *= 2;
|
||||
state->ptr = (QueryItem *) repalloc((void *) state->ptr, state->len * sizeof(QueryItem));
|
||||
state->ptr = (QueryItem *) repalloc(state->ptr, state->len * sizeof(QueryItem));
|
||||
}
|
||||
memcpy((void *) &(state->ptr[state->cur]), (void *) node->valnode, sizeof(QueryItem));
|
||||
memcpy(&(state->ptr[state->cur]), node->valnode, sizeof(QueryItem));
|
||||
if (node->valnode->type == QI_VAL)
|
||||
state->cur++;
|
||||
else if (node->valnode->qoperator.oper == OP_NOT)
|
||||
|
||||
Reference in New Issue
Block a user