set_stack_base() no longer needs to be called in PostgresMain.

This was a thinko in previous commit. Now that stack base pointer is now set
in PostmasterMain and SubPostmasterMain, it doesn't need to be set in
PostgresMain anymore.
This commit is contained in:
Heikki Linnakangas 2012-04-08 19:39:12 +03:00
parent ef3883d130
commit 03529a3ff9
1 changed files with 0 additions and 3 deletions

View File

@ -3508,9 +3508,6 @@ PostgresMain(int argc, char *argv[], const char *username)
SetProcessingMode(InitProcessing);
/* Set up reference point for stack depth checking */
set_stack_base();
/* Compute paths, if we didn't inherit them from postmaster */
if (my_exec_path[0] == '\0')
{