mirror of
https://github.com/github/codeql.git
synced 2026-04-30 19:26:02 +02:00
use flow labels to avoid dual configurations
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -84,4 +84,16 @@
|
||||
}
|
||||
|
||||
$('myId').html(foo); // Direct leak, reported by other query.
|
||||
|
||||
try {
|
||||
unknown(foo.match(/foo/));
|
||||
} catch(e) {
|
||||
$('myId').html(e); // NOT OK!
|
||||
}
|
||||
|
||||
try {
|
||||
unknown([foo, "bar"]);
|
||||
} catch(e) {
|
||||
$('myId').html(e); // NOT OK!
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user