[LibFuzzer] Tweak MutationDispatcher::Mutate_CopyPart mutation.
It doesn't make sense to non-deterministically choose between
CopyPart(..) and InsertPart(..) when it is known that
InsertPart(..) will fail.
This upstream's a change from JFS solver's fork of LibFuzzer.
Why unsigned int?
This code uses 'int' or 'size_t', depending on the context.
size_t for something that is a size, 'int' for just iterations.
unsigned int is longer to spell and is inconsistent.