Skip to content
Snippets Groups Projects
Commit f26c9896 authored by Tom Lane's avatar Tom Lane
Browse files

Suppress variable-clobbered-by-longjmp warning seen with older gcc versions.

parent beef8956
No related branches found
No related tags found
No related merge requests found
...@@ -487,7 +487,7 @@ bool ...@@ -487,7 +487,7 @@ bool
ParseConfigFp(FILE *fp, const char *config_file, int depth, int elevel, ParseConfigFp(FILE *fp, const char *config_file, int depth, int elevel,
ConfigVariable **head_p, ConfigVariable **tail_p) ConfigVariable **head_p, ConfigVariable **tail_p)
{ {
bool OK = true; volatile bool OK = true;
unsigned int save_ConfigFileLineno = ConfigFileLineno; unsigned int save_ConfigFileLineno = ConfigFileLineno;
sigjmp_buf *save_GUC_flex_fatal_jmp = GUC_flex_fatal_jmp; sigjmp_buf *save_GUC_flex_fatal_jmp = GUC_flex_fatal_jmp;
sigjmp_buf flex_fatal_jmp; sigjmp_buf flex_fatal_jmp;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment