Skip to content

Commit 8a8062f

Browse files
committed
fixed a crash and incremented to 2.3.3
1 parent b6fdd3b commit 8a8062f

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Diff for: Attorney_Online_remake.pro

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RC_ICONS = logo.ico
1313
TARGET = Attorney_Online_remake
1414
TEMPLATE = app
1515

16-
VERSION = 2.3.2.0
16+
VERSION = 2.3.3.0
1717

1818
SOURCES += main.cpp\
1919
lobby.cpp \

Diff for: aoapplication.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class AOApplication : public QApplication
135135
private:
136136
const int RELEASE = 2;
137137
const int MAJOR_VERSION = 3;
138-
const int MINOR_VERSION = 2;
138+
const int MINOR_VERSION = 3;
139139

140140
QString user_theme = "default";
141141

Diff for: courtroom.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -856,6 +856,9 @@ void Courtroom::on_chat_return_pressed()
856856

857857
void Courtroom::handle_chatmessage(QStringList *p_contents)
858858
{
859+
if (p_contents->size() < 15)
860+
return;
861+
859862
for (int n_string = 0 ; n_string < chatmessage_size ; ++n_string)
860863
{
861864
m_chatmessage[n_string] = p_contents->at(n_string);

0 commit comments

Comments
 (0)