mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1247535 - Fix -Wunreachable-code warning in mfbt/Poison.cpp. r=froydnj
mfbt/Poison.cpp:165:26: warning: will never be executed [-Wunreachable-code]
This commit is contained in:
parent
1ade41ec65
commit
a8072ba663
@ -192,9 +192,7 @@ ReservePoisonArea(uintptr_t rgnsize)
|
||||
return uintptr_t(result);
|
||||
}
|
||||
|
||||
// no usable poison region identified
|
||||
MOZ_CRASH();
|
||||
return 0;
|
||||
MOZ_CRASH("no usable poison region identified");
|
||||
}
|
||||
|
||||
void
|
||||
|
Loading…
Reference in New Issue
Block a user