mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 06:07:36 +03:00
Avoid implicit memory aliasing in for loop
This commit is contained in:
parent
de6afd5a4c
commit
4f47cd0f4f
1 changed files with 2 additions and 1 deletions
|
@ -675,7 +675,8 @@ func (config *Config) loadSources(proxy *Proxy) error {
|
||||||
if config.SourceRequireNoFilter {
|
if config.SourceRequireNoFilter {
|
||||||
requiredProps |= stamps.ServerInformalPropertyNoFilter
|
requiredProps |= stamps.ServerInformalPropertyNoFilter
|
||||||
}
|
}
|
||||||
for cfgSourceName, cfgSource := range config.SourcesConfig {
|
for cfgSourceName, cfgSource_ := range config.SourcesConfig {
|
||||||
|
cfgSource := cfgSource_
|
||||||
if err := config.loadSource(proxy, requiredProps, cfgSourceName, &cfgSource); err != nil {
|
if err := config.loadSource(proxy, requiredProps, cfgSourceName, &cfgSource); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue