Allow files in LD_PRELOAD to be separated by white space, like Solaris

and Linux.
This commit is contained in:
jdp 2000-01-22 22:20:05 +00:00
parent d085826f21
commit 6e995a0582

View File

@ -1034,13 +1034,14 @@ static int
load_preload_objects(void)
{
char *p = ld_preload;
static const char delim[] = " \t:;";
if (p == NULL)
return NULL;
p += strspn(p, ":;");
p += strspn(p, delim);
while (*p != '\0') {
size_t len = strcspn(p, ":;");
size_t len = strcspn(p, delim);
char *path;
char savech;
@ -1052,7 +1053,7 @@ load_preload_objects(void)
return -1; /* XXX - cleanup */
p[len] = savech;
p += len;
p += strspn(p, ":;");
p += strspn(p, delim);
}
return 0;
}