Commit e942af7b authored by Tom Lane's avatar Tom Lane

Suppress compiler warning in non-cassert builds.

Oversight in 808e13b2, reported by Bruce Momjian.

Discussion: https://postgr.es/m/20200826160251.GB21909@momjian.us
parent fe7fd4e9
...@@ -285,7 +285,6 @@ SharedFileSetDeleteOnProcExit(int status, Datum arg) ...@@ -285,7 +285,6 @@ SharedFileSetDeleteOnProcExit(int status, Datum arg)
void void
SharedFileSetUnregister(SharedFileSet *input_fileset) SharedFileSetUnregister(SharedFileSet *input_fileset)
{ {
bool found = false;
ListCell *l; ListCell *l;
/* /*
...@@ -303,12 +302,12 @@ SharedFileSetUnregister(SharedFileSet *input_fileset) ...@@ -303,12 +302,12 @@ SharedFileSetUnregister(SharedFileSet *input_fileset)
if (input_fileset == fileset) if (input_fileset == fileset)
{ {
filesetlist = list_delete_cell(filesetlist, l); filesetlist = list_delete_cell(filesetlist, l);
found = true; return;
break;
} }
} }
Assert(found); /* Should have found a match */
Assert(false);
} }
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment