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<()> {
6161 let buffer = pinned. poll_fill_buf ( & mut cx) ;
6262 if let Poll :: Ready ( Ok ( buf) ) = buffer {
6363 sink ( & buffer) ; // $ hasTaintFlow=url
64- sink ( buf) ; // $ hasTaintFlow=url
64+ sink ( buf) ; // $ MISSING: hasTaintFlow=url
6565 }
6666
6767 // using the `AsyncBufRead` trait (alternative syntax)
@@ -113,7 +113,7 @@ async fn test_futures_rustls_futures_io() -> io::Result<()> {
113113 sink ( & pinned) ; // $ hasTaintFlow=url
114114 let mut cx = Context :: from_waker ( futures:: task:: noop_waker_ref ( ) ) ;
115115 let buffer = pinned. poll_fill_buf ( & mut cx) ;
116- sink ( & buffer) ; // $ MISSING: hasTaintFlow=url
116+ sink ( & buffer) ; // $ hasTaintFlow=url
117117 if let Poll :: Ready ( Ok ( buf) ) = buffer {
118118 sink ( buf) ; // $ MISSING: hasTaintFlow=url
119119 }
You can’t perform that action at this time.
0 commit comments