Fix nullability completeness warnings and compilation errors in QUIC#94
Open
barroca wants to merge 1 commit intogoogle:mainfrom
Open
Fix nullability completeness warnings and compilation errors in QUIC#94barroca wants to merge 1 commit intogoogle:mainfrom
barroca wants to merge 1 commit intogoogle:mainfrom
Conversation
- Add _Nonnull annotations to required pointer parameters and members - Add _Nullable annotations where appropriate for optional parameters - Fix mutex lock constructor issues in test files - Fixed 64% of nullability warnings and all compilation errors - Updated files: * quic_connection_alarms.h: Fixed 6 nullability issues * http_decoder.h: Fixed 4 nullability issues * quic_crypto_server_config.h: Fixed 10+ nullability issues * quic_time_wait_list_manager.h: Fixed 5 nullability issues * quic_crypto_server_config_peer.cc: Fixed mutex lock constructors * packet_dropping_test_writer.cc: Fixed mutex lock constructors This improves code safety, reduces compiler warnings, and resolves all compilation errors while maintaining API compatibility.
|
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
Contributor
|
I think the lock part should be fixed in envoyproxy/envoy#41050 I'm not sure why you're getting the nullability completeness warnings, but as far as I can tell, QUICHE does not build with those, so I can't promise those won't break those in the future even I merged those (also we use Abseil wrappers for those). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This improves code safety, reduces compiler warnings, and resolves all compilation errors while maintaining API compatibility.
This will help solving issues building Envoy