Skip to content

Commit

Permalink
Merge pull request #37940 from missirol/devel_fixBufferOfInitMsgBuild…
Browse files Browse the repository at this point in the history
…er_123X

increase size of buffer in `InitMsgBuilder` [`12_3_X`]
  • Loading branch information
cmsbuild committed May 14, 2022
2 parents 339585c + 9c8fbba commit 43c0137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IOPool/Streamer/src/InitMsgBuilder.cc
Expand Up @@ -72,7 +72,7 @@ InitMsgBuilder::InitMsgBuilder(void* buf,
// header size was hard-coded.)
std::vector<bool> dummyL1Bits(l1_names.size());
std::vector<char> dummyHLTBits(hlt_names.size());
const uint32 TEMP_BUFFER_SIZE = 256;
const uint32 TEMP_BUFFER_SIZE = 640;
char msgBuff[TEMP_BUFFER_SIZE]; // not large enough for a real event!
uint32_t adler32 = 0;
char host_name[255];
Expand Down

0 comments on commit 43c0137

Please sign in to comment.