Skip to content

Commit

Permalink
Fix quic_frames_test when QUIC_FRAME_DEBUG is defined.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 716227585
  • Loading branch information
wang178c authored and copybara-github committed Jan 16, 2025
1 parent 15fb010 commit 18b39b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion quiche/quic/core/frames/quic_frame.cc
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ void DeleteFrame(QuicFrame* frame) {
frame->type != WINDOW_UPDATE_FRAME && frame->type != BLOCKED_FRAME &&
frame->type != STOP_SENDING_FRAME &&
frame->type != PATH_CHALLENGE_FRAME &&
frame->type != PATH_RESPONSE_FRAME) {
frame->type != PATH_RESPONSE_FRAME &&
frame->type != IMMEDIATE_ACK_FRAME) {
QUICHE_CHECK(!frame->delete_forbidden) << *frame;
}
#endif // QUIC_FRAME_DEBUG
Expand Down

0 comments on commit 18b39b3

Please sign in to comment.