We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The function h2_c2_create() takes a bucket allocator as a parameter (apr_bucket_alloc_t *buckt_alloc), but this parameter is not used.
h2_c2_create()
apr_bucket_alloc_t *buckt_alloc
The function creates a new bucket allocator:
c2->bucket_alloc = apr_bucket_alloc_create(pool);
It could be an optimization to use the bucket allocator that has been passed as a parameter:
c2->bucket_alloc = buckt_alloc;
I don't know whether this is correct - feel free to close this issue if it's a bad idea.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The function
h2_c2_create()
takes a bucket allocator as a parameter (apr_bucket_alloc_t *buckt_alloc
), but this parameter is not used.The function creates a new bucket allocator:
It could be an optimization to use the bucket allocator that has been passed as a parameter:
I don't know whether this is correct - feel free to close this issue if it's a bad idea.
The text was updated successfully, but these errors were encountered: