prog: fix mutation of special types

Caught by existing tests, just happens very infrequently.
This commit is contained in:
Dmitry Vyukov 2018-02-01 15:20:37 +01:00
parent d973f28294
commit 11fa8bb3de

View File

@ -204,7 +204,7 @@ func (g *Gen) MutateArg(arg0 Arg) (calls []*Call) {
if !ok {
continue
}
calls = append(newCalls, newCalls...)
calls = append(calls, newCalls...)
}
return calls
}