1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

Canonicalize preload_libraries after it is split up, not before.

This commit is contained in:
Bruce Momjian
2004-07-12 00:09:07 +00:00
parent 0589ab68c5
commit 118ec0daa8
2 changed files with 4 additions and 3 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/init/miscinit.c,v 1.128 2004/07/11 23:49:48 momjian Exp $
* $PostgreSQL: pgsql/src/backend/utils/init/miscinit.c,v 1.129 2004/07/12 00:09:06 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -926,6 +926,7 @@ process_preload_libraries(char *preload_libraries_string)
funcname = NULL;
}
canonicalize_path(filename);
initfunc = (func_ptr) load_external_function(filename, funcname,
true, NULL);
if (initfunc)