We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62493a3 commit 779b812Copy full SHA for 779b812
1 file changed
src/extensions.c
@@ -743,6 +743,11 @@ int extensions_load_named(const char* spec,
743
return -1;
744
}
745
746
+ if (has_dynlib_suffix(spec)) {
747
+ set_errorf(error_out, "EXTEND: explicit extension suffix rejected: ", spec);
748
+ return -1;
749
+ }
750
+
751
char* ext_name = extension_name_from_spec(spec);
752
if (!ext_name || ext_name[0] == '\0') {
753
free(ext_name);
0 commit comments