Changeset 77489 in vbox for trunk/src/VBox/Runtime/common/fuzz/fuzz.cpp
- Timestamp:
- Feb 27, 2019 1:47:36 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fuzz/fuzz.cpp
r77487 r77489 530 530 { 531 531 pMutation->cbInput = pMutationParent->cbInput; /* Bit flips don't change the input size. */ 532 pMutation->u.idxBitFlip = RTRandAdvS32Ex(pThis->hRand, 0, (pMutationParent->cbInput - offStart) * 8 - 1);532 pMutation->u.idxBitFlip = RTRandAdvS32Ex(pThis->hRand, 0, sizeof(uint8_t) * 8 - 1); 533 533 *ppMutation = pMutation; 534 534 }
Note:
See TracChangeset
for help on using the changeset viewer.