Re: [PATCH 0/2] migration: fix coverity nits

2022-08-02 Thread Dr. David Alan Gilbert
* Peter Maydell (peter.mayd...@linaro.org) wrote: > On Thu, 21 Jul 2022 at 12:52, Peter Maydell wrote: > > > > This patchset fixes four Coverity nits in the migration code. > > The first patch is just adding an assert() to clue coverity in > > that an array index must be in-bounds. The second

Re: [PATCH 0/2] migration: fix coverity nits

2022-08-01 Thread Peter Maydell
On Thu, 21 Jul 2022 at 12:52, Peter Maydell wrote: > > This patchset fixes four Coverity nits in the migration code. > The first patch is just adding an assert() to clue coverity in > that an array index must be in-bounds. The second adds an ULL > suffix to force a multiplication to be done at 64

[PATCH 0/2] migration: fix coverity nits

2022-07-21 Thread Peter Maydell
This patchset fixes four Coverity nits in the migration code. The first patch is just adding an assert() to clue coverity in that an array index must be in-bounds. The second adds an ULL suffix to force a multiplication to be done at 64 bits. thanks -- PMM Peter Maydell (2): migration: Assert