We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f4c6eb commit 5e240cfCopy full SHA for 5e240cf
source/loader/layers/sanitizer/asan_options.hpp
@@ -98,7 +98,7 @@ struct AsanOptions {
98
99
auto KV = OptionsEnvMap->find("quarantine_size_mb");
100
if (KV != OptionsEnvMap->end()) {
101
- auto Value = KV->second.front();
+ const auto &Value = KV->second.front();
102
try {
103
auto temp_long = std::stoul(Value);
104
if (temp_long > UINT32_MAX) {
@@ -129,7 +129,7 @@ struct AsanOptions {
129
130
KV = OptionsEnvMap->find("max_redzone");
131
132
133
134
MaxRZSize = std::stoul(Value);
135
if (MaxRZSize > 2048) {
0 commit comments