Skip to content

Commit

Permalink
Merge pull request ddnet#7003 from Robyt3/Scoreworker-Query-Size-Fix
Browse files Browse the repository at this point in the history
Increase another SQL query buffer size
  • Loading branch information
def- authored Aug 12, 2023
2 parents 84c6cf2 + defd8f7 commit 255092f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/server/scoreworker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1516,7 +1516,7 @@ bool CScoreWorker::SaveTeam(IDbConnection *pSqlServer, const ISqlData *pGameData
}
if(w == Write::NORMAL_FAILED)
{
char aBuf[128] = {0};
char aBuf[256] = {0};
bool End;
// move to non-tmp table succeded. delete from backup again
str_format(aBuf, sizeof(aBuf),
Expand Down

0 comments on commit 255092f

Please sign in to comment.