mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
Rust: Accept result de-regression.
This commit is contained in:
@@ -562,8 +562,6 @@ nodes
|
||||
| test.rs:501:19:501:24 | buffer | semmle.label | buffer |
|
||||
subpaths
|
||||
testFailures
|
||||
| test.rs:400:18:400:40 | &... | Fixed missing result: hasTaintFlow=url |
|
||||
| test.rs:405:18:405:40 | &... | Fixed missing result: hasTaintFlow=url |
|
||||
#select
|
||||
| test.rs:12:10:12:23 | remote_string1 | test.rs:11:26:11:47 | ...::get | test.rs:12:10:12:23 | remote_string1 | $@ | test.rs:11:26:11:47 | ...::get | ...::get |
|
||||
| test.rs:15:10:15:23 | remote_string2 | test.rs:14:26:14:47 | ...::get | test.rs:15:10:15:23 | remote_string2 | $@ | test.rs:14:26:14:47 | ...::get | ...::get |
|
||||
|
||||
@@ -397,12 +397,12 @@ mod futures_rustls {
|
||||
// using the `AsyncReadExt::read` extension method (higher-level)
|
||||
let mut buffer1 = [0u8; 64];
|
||||
let bytes_read1 = futures::io::AsyncReadExt::read(&mut reader, &mut buffer1).await?;
|
||||
sink(&buffer1[..bytes_read1]); // $ MISSING: hasTaintFlow=url
|
||||
sink(&buffer1[..bytes_read1]); // $ hasTaintFlow=url
|
||||
|
||||
let mut buffer2 = [0u8; 64];
|
||||
let bytes_read2 = reader.read(&mut buffer2).await?;
|
||||
|
||||
sink(&buffer2[..bytes_read2]); // $ MISSING: hasTaintFlow=url
|
||||
sink(&buffer2[..bytes_read2]); // $ hasTaintFlow=url
|
||||
}
|
||||
|
||||
let mut reader2 = futures::io::BufReader::new(reader);
|
||||
|
||||
Reference in New Issue
Block a user