mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Remove useless "return;" lines
Discussion: https://postgr.es/m/20191128144653.GA27883@alvherre.pgsql
This commit is contained in:
@ -698,8 +698,6 @@ _metaphone(char *word, /* IN */
|
||||
} /* END FOR */
|
||||
|
||||
End_Phoned_Word;
|
||||
|
||||
return;
|
||||
} /* END metaphone */
|
||||
|
||||
|
||||
|
@ -192,7 +192,6 @@ pushval_asis(QPRS_STATE *state, int type, char *strval, int lenval, uint16 flag)
|
||||
*(state->curop) = '\0';
|
||||
state->curop++;
|
||||
state->sumlen += lenval + 1;
|
||||
return;
|
||||
}
|
||||
|
||||
#define STACKDEPTH 32
|
||||
|
@ -545,7 +545,6 @@ CheckForExternalTrigger(void)
|
||||
|
||||
fprintf(stderr, "WARNING: invalid content in \"%s\"\n", triggerPath);
|
||||
fflush(stderr);
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -94,8 +94,6 @@ prepare_room(MBuf *mbuf, int block_len)
|
||||
mbuf->data_end = newbuf + (mbuf->data_end - mbuf->data);
|
||||
mbuf->read_pos = newbuf + (mbuf->read_pos - mbuf->data);
|
||||
mbuf->data = newbuf;
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
int
|
||||
|
@ -706,8 +706,6 @@ rt_seg_size(SEG *a, float *size)
|
||||
*size = 0.0;
|
||||
else
|
||||
*size = (float) Abs(a->upper - a->lower);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
Datum
|
||||
|
@ -809,8 +809,6 @@ sepgsql_compute_avd(const char *scontext,
|
||||
if (avd_ex.auditdeny & av_code_ex)
|
||||
avd->auditdeny |= av_code;
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user