1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

Check for absolute paths by only checking the first character of the module name.

Don't use strchr_m, which caused race conditions.
(This used to be commit 9411e3336ebe781da2b418219dd5803fecfc42fe)
This commit is contained in:
Jelmer Vernooij 2003-04-24 19:30:16 +00:00
parent 8bfad47114
commit 477f90f95c

View File

@ -80,7 +80,7 @@ int smb_probe_module(const char *subsystem, const char *module)
pstring full_path;
/* Check for absolute path */
if(strchr_m(module, '/'))return smb_load_module(module);
if(module[0] == '/')return smb_load_module(module);
pstrcpy(full_path, lib_path(subsystem));
pstrcat(full_path, "/");