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:
parent
8bfad47114
commit
477f90f95c
@ -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, "/");
|
||||
|
Loading…
x
Reference in New Issue
Block a user