Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix buffers exhaution when compiled with statistics [12629] #2243

Merged
merged 7 commits into from
Oct 8, 2021
2 changes: 1 addition & 1 deletion src/cpp/rtps/flowcontrol/FlowControllerImpl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ struct FlowControllerAsyncPublishMode
FlowControllerAsyncPublishMode(
fastrtps::rtps::RTPSParticipantImpl* participant,
const FlowControllerDescriptor*)
: group(participant)
: group(participant, true)
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ class RTPSMessageGroup
public:

RTPSMessageGroup(
RTPSParticipantImpl*)
RTPSParticipantImpl*,
bool)
{
}

Expand Down