-
Notifications
You must be signed in to change notification settings - Fork 237
New issue
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
Fix warning about pytaken_msg maybe being uninitialized #551
Conversation
Signed-off-by: Shane Loretz <sloretz@osrfoundation.org>
Signed-off-by: Shane Loretz <sloretz@osrfoundation.org>
CI windows only shows these test failures which are clearly unrelated to this PR
But console output shows
Which may be related, and wasn't captured in the test results. Investigating. |
Ok, I think I understand what happened here. The test got re-ran because CI uses Anyways, this PR is good as is. I'll open a separate PR to |
Seen in https://ci.ros2.org/job/nightly_linux_release/1525/gcc/new/
This initializes
pytaken_msg
withNULL
, and changes the check thatpytaken_msg
is notNULL
to cover both raw and non-raw cases.