Fix out of bounds crash on evidence
This commit is contained in:
parent
78f3e1d3d1
commit
5566cdfedd
@ -378,7 +378,7 @@ void AOClient::pktRemoveEvidence(AreaData* area, int argc, QStringList argv, AOP
|
||||
return;
|
||||
bool is_int = false;
|
||||
int idx = argv[0].toInt(&is_int);
|
||||
if (is_int && idx <= area->evidence().size() && idx >= 0) {
|
||||
if (is_int && idx < area->evidence().size() && idx >= 0) {
|
||||
area->deleteEvidence(idx);
|
||||
}
|
||||
sendEvidenceList(area);
|
||||
@ -391,7 +391,7 @@ void AOClient::pktEditEvidence(AreaData* area, int argc, QStringList argv, AOPac
|
||||
bool is_int = false;
|
||||
int idx = argv[0].toInt(&is_int);
|
||||
AreaData::Evidence evi = {argv[1], argv[2], argv[3]};
|
||||
if (is_int && idx <= area->evidence().size() && idx >= 0) {
|
||||
if (is_int && idx < area->evidence().size() && idx >= 0) {
|
||||
area->replaceEvidence(idx, evi);
|
||||
}
|
||||
sendEvidenceList(area);
|
||||
|
Loading…
Reference in New Issue
Block a user