mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
37f53aa9ed
PFoo::Transition currently looks something like: bool Transition( State from, mozilla::ipc::Trigger trigger, State* next) { switch (from) { ... default: NS_RUNTIMEABORT("corrupted actor state"); return false; } (*(next)) = __Error; return false; } Coverity complains that the assignment (*(next)) = __Error will never be reached, and rightfully so. We can remove this fallthrough block when there are no states declared in the individual protocol. |
||
---|---|---|
.. | ||
ipdl | ||
test | ||
ipdl.py | ||
Makefile.in | ||
moz.build | ||
msgtype-components |