aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/extension.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/commands/extension.c')
-rw-r--r--src/backend/commands/extension.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/commands/extension.c b/src/backend/commands/extension.c
index 9ffce8529bb..5ebc7553bc7 100644
--- a/src/backend/commands/extension.c
+++ b/src/backend/commands/extension.c
@@ -472,9 +472,10 @@ parse_extension_control_file(ExtensionControlFile *control,
}
/*
- * Parse the file content, using GUC's file parsing code
+ * Parse the file content, using GUC's file parsing code. We need not
+ * check the return value since any errors will be thrown at ERROR level.
*/
- ParseConfigFp(file, filename, 0, ERROR, &head, &tail);
+ (void) ParseConfigFp(file, filename, 0, ERROR, &head, &tail);
FreeFile(file);