We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73b712a commit 3e73e02Copy full SHA for 3e73e02
1 file changed
go/ql/lib/semmle/go/dataflow/internal/DataFlowNodes.qll
@@ -732,7 +732,11 @@ module Public {
732
or
733
preupd = getAWrittenNode()
734
735
- preupd instanceof ArgumentNode and
+ (
736
+ preupd instanceof ArgumentNode and not preupd instanceof ImplicitVarargsSlice
737
+ or
738
+ preupd = any(CallNode c).getImplicitVarargsArgument(_)
739
+ ) and
740
mutableType(preupd.getType())
741
) and
742
(
0 commit comments