mirror of
https://github.com/winfsp/winfsp.git
synced 2025-06-15 08:12:45 -05:00
dll,launcher: invariant string comparisons
This commit is contained in:
@ -107,7 +107,7 @@ static void fsp_fuse_opt_match_templ(
|
||||
if ('%' == *p || '\0' == *p)
|
||||
*pspec = p, *parg = q;
|
||||
else
|
||||
*parg = 0 == lstrcmpA(q, p) ?
|
||||
*parg = 0 == invariant_strcmp(q, p) ?
|
||||
fsp_fuse_opt_match_exact : fsp_fuse_opt_match_none;
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user