Skip to content

Commit 015d48e

Browse files
committed
Fix select message
1 parent 7b34b10 commit 015d48e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/ql/src/Security/CWE/CWE-441/UnsafeContentUriResolution.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ import DataFlow::PathGraph
1818

1919
from DataFlow::PathNode src, DataFlow::PathNode sink
2020
where any(UnsafeContentResolutionConf c).hasFlowPath(src, sink)
21-
select sink.getNode(), src, sink, "This $@ flows to a ContentResolver method that resolves a URI.",
22-
src.getNode(), "user input"
21+
select sink.getNode(), src, sink, "This ContentResolver method that resolves a URI depends on $@.",
22+
src.getNode(), "a user-provided value"

0 commit comments

Comments
 (0)