TSG-23335 TFE适配AArch64架构
This commit is contained in:
@@ -2417,7 +2417,7 @@ static int http2_server_on_data_chunk_recv(nghttp2_session *session, uint8_t fla
|
||||
if (req->h2_payload.encode_type != HTTP2_CONTENT_ENCODING_NONE){
|
||||
ret = http2_decompress_stream(input, input_len, &uncompr, &uncompr_len,
|
||||
&req->h2_payload.inflate, req->h2_payload.encode_type);
|
||||
if (((ret == Z_STREAM_END) || (ret == Z_OK)) && uncompr > 0){
|
||||
if (((ret == Z_STREAM_END) || (ret == Z_OK)) && uncompr_len > 0){
|
||||
input = (const uint8_t*)uncompr;
|
||||
input_len = uncompr_len;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user