@@ -47,7 +47,7 @@ async fn test_futures_rustls_futures_io() -> io::Result<()> {
47
47
48
48
let mut buffer2 = [ 0u8 ; 64 ] ;
49
49
let bytes_read2 = reader. read ( & mut buffer2) . await ?;
50
- sink ( & buffer2[ ..bytes_read2] ) ; // $ MISSING: hasTaintFlow
50
+ sink ( & buffer2[ ..bytes_read2] ) ; // $ hasTaintFlow=url
51
51
}
52
52
53
53
let mut reader2 = futures:: io:: BufReader :: new ( reader) ;
@@ -104,7 +104,7 @@ async fn test_futures_rustls_futures_io() -> io::Result<()> {
104
104
105
105
let mut buffer2 = [ 0u8 ; 64 ] ;
106
106
let bytes_read2 = reader2. read ( & mut buffer2) . await ?;
107
- sink ( & buffer2[ ..bytes_read2] ) ; // $ MISSING: hasTaintFlow
107
+ sink ( & buffer2[ ..bytes_read2] ) ; // $ hasTaintFlow=url
108
108
}
109
109
110
110
{
@@ -129,21 +129,21 @@ async fn test_futures_rustls_futures_io() -> io::Result<()> {
129
129
// using the `AsyncBufReadExt::read_until` extension method
130
130
let mut line = Vec :: new ( ) ;
131
131
let _bytes_read = reader2. read_until ( b'\n' , & mut line) . await ?;
132
- sink ( & line) ; // $ MISSING: hasTaintFlow
132
+ sink ( & line) ; // $ hasTaintFlow=url
133
133
}
134
134
135
135
{
136
136
// using the `AsyncBufReadExt::read_line` extension method
137
137
let mut line = String :: new ( ) ;
138
138
let _bytes_read = reader2. read_line ( & mut line) . await ?;
139
- sink ( & line) ; // $ MISSING: hasTaintFlow
139
+ sink ( & line) ; // $ hasTaintFlow=url
140
140
}
141
141
142
142
{
143
143
// using the `AsyncBufReadExt::read_to_end` extension method
144
144
let mut buffer = Vec :: with_capacity ( 1024 ) ;
145
145
let _bytes_read = reader2. read_to_end ( & mut buffer) . await ?;
146
- sink ( & buffer) ; // $ MISSING: hasTaintFlow
146
+ sink ( & buffer) ; // $ hasTaintFlow=url
147
147
}
148
148
149
149
{
0 commit comments