We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4478f3f commit a8dd6e7Copy full SHA for a8dd6e7
src/backend/utils/fmgr/dfmgr.c
@@ -185,13 +185,13 @@ neon_try_load(const char *name)
185
else if (pkglib_path[0] != '\0' &&
186
strncmp(request_name, pkglib_path, pkglib_path_len) == 0)
187
{
188
- bool have_slash;
+ bool trailing_slash;
189
char *new_request_name;
190
191
/* If there is a directory separator, it should be removed. */
192
- have_slash = request_name[pkglib_path_len] == '/';
+ trailing_slash = request_name[pkglib_path_len] == '/';
193
194
- new_request_name = psprintf("%s", request_name + pkglib_path_len + (int)have_slash);
+ new_request_name = psprintf("%s", request_name + pkglib_path_len + (int)trailing_slash);
195
pfree(request_name);
196
request_name = new_request_name;
197
0 commit comments