Skip to content
This repository was archived by the owner on Jan 5, 2023. It is now read-only.

Commit 17b3d56

Browse files
committed
Remove unnecessary string concat
1 parent 1e7bbcc commit 17b3d56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ql/src/Security/CWE-190/AllocationSizeOverflow.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ where
2121
cfg.hasFlowPath(source, sink) and
2222
cfg.isSink(sink.getNode(), allocsz)
2323
select sink, source, sink,
24-
"This operation, which is used in an $@, involves a potentially large $@ " + "and might overflow.",
24+
"This operation, which is used in an $@, involves a potentially large $@ and might overflow.",
2525
allocsz, "allocation", source, "value"

0 commit comments

Comments
 (0)