File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
rust/ql/test/library-tests/dataflow/sources Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ async fn test_futures_rustls_futures_io() -> io::Result<()> {
61
61
let buffer = pinned. poll_fill_buf ( & mut cx) ;
62
62
if let Poll :: Ready ( Ok ( buf) ) = buffer {
63
63
sink ( & buffer) ; // $ hasTaintFlow=url
64
- sink ( buf) ; // $ hasTaintFlow=url
64
+ sink ( buf) ; // $ MISSING: hasTaintFlow=url
65
65
}
66
66
67
67
// using the `AsyncBufRead` trait (alternative syntax)
@@ -113,7 +113,7 @@ async fn test_futures_rustls_futures_io() -> io::Result<()> {
113
113
sink ( & pinned) ; // $ hasTaintFlow=url
114
114
let mut cx = Context :: from_waker ( futures:: task:: noop_waker_ref ( ) ) ;
115
115
let buffer = pinned. poll_fill_buf ( & mut cx) ;
116
- sink ( & buffer) ; // $ MISSING: hasTaintFlow=url
116
+ sink ( & buffer) ; // $ hasTaintFlow=url
117
117
if let Poll :: Ready ( Ok ( buf) ) = buffer {
118
118
sink ( buf) ; // $ MISSING: hasTaintFlow=url
119
119
}
You can’t perform that action at this time.
0 commit comments