This is an automated email from the ASF dual-hosted git repository.
masaori pushed a commit to branch quic-latest
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/quic-latest by this push:
new 997729b Fix deleter of QUICPathResponseFrame unique pointer
997729b is described below
commit 997729b69d43de6bf3d39ff28ae672161a562a0c
Author: Masaori Koshiba <[email protected]>
AuthorDate: Thu May 31 11:35:37 2018 +0900
Fix deleter of QUICPathResponseFrame unique pointer
---
iocore/net/quic/QUICFrame.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/iocore/net/quic/QUICFrame.cc b/iocore/net/quic/QUICFrame.cc
index 067c040..a79ef85 100644
--- a/iocore/net/quic/QUICFrame.cc
+++ b/iocore/net/quic/QUICFrame.cc
@@ -2340,7 +2340,7 @@ QUICFrameFactory::create_path_response_frame(const
uint8_t *data)
QUICPathResponseFrame *frame = quicPathResponseFrameAllocator.alloc();
new (frame) QUICPathResponseFrame(std::move(buf), false);
- return std::unique_ptr<QUICPathResponseFrame, QUICFrameDeleterFunc>(frame,
&QUICFrameDeleter::delete_path_challenge_frame);
+ return std::unique_ptr<QUICPathResponseFrame, QUICFrameDeleterFunc>(frame,
&QUICFrameDeleter::delete_path_response_frame);
}
std::unique_ptr<QUICBlockedFrame, QUICFrameDeleterFunc>
--
To stop receiving notification emails like this one, please contact
[email protected].