Skip to content
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

SubscribeMany and UnsubscribeMany responses contain pointers instead of QoS #216

Open
Arnavion opened this issue Dec 6, 2023 · 0 comments
Labels
bug fix added A fix was added to an unreleased branch
Milestone

Comments

@Arnavion
Copy link

Arnavion commented Dec 6, 2023

The code is casting *mut MQTTReasonCodes -> i32 instead of the intended MQTTReasonCodes -> i32

qosv.push(rsp.alt.sub.reasonCodes.add(i) as i32);

-qosv.push(rsp.alt.sub.reasonCodes.add(i) as i32);
+qosv.push(*rsp.alt.sub.reasonCodes.add(i) as i32);

qosv.push(rsp.alt.unsub.reasonCodes.add(i) as i32);

-qosv.push(rsp.alt.unsub.reasonCodes.add(i) as i32);
+qosv.push(*rsp.alt.unsub.reasonCodes.add(i) as i32);
@fpagliughi fpagliughi added bug fix added A fix was added to an unreleased branch labels May 25, 2024
@fpagliughi fpagliughi added this to the v0.13 milestone May 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug fix added A fix was added to an unreleased branch
Projects
None yet
Development

No branches or pull requests

2 participants