Merge pull request #100 from Salanto/Fix-Woopsie2

Fix Server Crash when deleting statements during recording
This commit is contained in:
Marisa P 2021-04-21 05:51:49 -05:00 committed by GitHub
commit 3e490252be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 5 deletions

View File

@ -107,7 +107,6 @@ void AOClient::cmdTestify(int argc, QStringList argv)
}
else {
clearTestimony();
area->statement = 0;
area->test_rec = AreaData::TestimonyRecording::RECORDING;
sendServerMessage("Started testimony recording.");
}
@ -157,6 +156,7 @@ void AOClient::cmdDeleteStatement(int argc, QStringList argv)
}
if (c_statement > 0 && area->testimony.size() > 2) {
area->testimony.remove(c_statement);
area->statement = c_statement - 1;
sendServerMessage("The statement with id " + QString::number(c_statement) + " has been deleted from the testimony.");
}
}

View File

@ -734,7 +734,7 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
if (args[5] != "wit")
return AOPacket("MS", args);
if (area->statement == 0) {
if (area->statement == -1) {
args[4] = "~~\\n-- " + args[4] + " --";
args[14] = "3";
server->broadcast(AOPacket("RT",{"testimony1"}), current_area);

View File

@ -23,15 +23,15 @@ void AOClient::addStatement(QStringList packet)
{
AreaData* area = server->areas[current_area];
int c_statement = area->statement;
if (c_statement >= 0) {
if (c_statement >= -1) {
if (area->test_rec == AreaData::TestimonyRecording::RECORDING) {
if (c_statement <= server->maximum_statements) {
if (c_statement == 0)
if (c_statement == -1)
packet[14] = "3";
else
packet[14] = "1";
area->testimony.append(packet);
area->statement = c_statement + 1;
area->testimony.append(packet);
return;
}
else {
@ -70,6 +70,7 @@ void AOClient::clearTestimony()
{
AreaData* area = server->areas[current_area];
area->test_rec = AreaData::TestimonyRecording::STOPPED;
area->statement = -1;
area->testimony.clear(); //!< Empty out the QVector
area->testimony.squeeze(); //!< Release memory. Good idea? God knows, I do not.
}