JosiahWI commented on issue #11589:
URL:
https://github.com/apache/trafficserver/issues/11589#issuecomment-2245113795
I have discovered the root cause of the crash (it wasn't as hard as I
expected):
#### src/proxy/http3/Http3Frame.cc
```cpp
std::shared_ptr<Http3Frame>
Http3FrameFactory::fast_create(IOBufferReader &reader)
{
// FIXME Frame type can be longer than 1 byte
uint8_t type_buf[1];
reader.memcpy(type_buf, sizeof(type_buf));
Http3FrameType type = Http3Frame::type(type_buf, sizeof(type_buf));
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]