From 5566cdfedddef1f219aee33477d9c9690bf2f78b Mon Sep 17 00:00:00 2001 From: oldmud0 Date: Tue, 27 Jul 2021 22:57:29 -0500 Subject: [PATCH] Fix out of bounds crash on evidence --- core/src/packets.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/packets.cpp b/core/src/packets.cpp index 9fdb5e2..5e16d4f 100644 --- a/core/src/packets.cpp +++ b/core/src/packets.cpp @@ -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);