We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0280221 commit 506ddafCopy full SHA for 506ddaf
1 file changed
javascript/ql/test/query-tests/Security/CWE-400/PrototypePollutionUtility/tests.js
@@ -354,7 +354,7 @@ function mergePlainObjectsOnly(target, source) {
354
if (isNonArrayObject(source[key]) && key in target) {
355
target[key] = mergePlainObjectsOnly(target[key], source[key], options);
356
} else {
357
- target[key] = source[key]; // OK - but flagged anyway
+ target[key] = source[key]; // OK - but flagged anyway due to imprecise barrier for captured variable
358
}
359
});
360
0 commit comments