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

doubly-linked-list: improve leak check #2043

Merged
merged 1 commit into from
Feb 26, 2025
Merged

doubly-linked-list: improve leak check #2043

merged 1 commit into from
Feb 26, 2025

Conversation

senekor
Copy link
Contributor

@senekor senekor commented Feb 25, 2025

Previously the check may fail due to an underflow in the subtraction, rather than the assert.

Forum discussion:
https://forum.exercism.org/t/fix-operand-order-in-leaked-bytes-check-in-leak-test-doubly-linked-list-rust-exercise/15884

Previously the check may fail due to an underflow in the subtraction,
rather than the assert.

Forum discussion:
https://forum.exercism.org/t/fix-operand-order-in-leaked-bytes-check-in-leak-test-doubly-linked-list-rust-exercise/15884
@senekor senekor requested a review from ellnix February 26, 2025 19:06
Comment on lines -22 to -23
let leaked_bytes = allocated_before - allocated_after;
assert!(leaked_bytes == 0);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was there any particular reason for choosing subtraction over equality in the past? It seems like a really strange decision.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking at it more closely, it just looks like a logic error. Even if there was a reason for the subtraction, the order should have been reversed. There's no conceivable reason for allocated_before to ever be larger than allocated_after.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Original PR is here, I can't find any discussion on that.

Copy link
Contributor

@ellnix ellnix left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

Comment on lines -22 to -23
let leaked_bytes = allocated_before - allocated_after;
assert!(leaked_bytes == 0);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking at it more closely, it just looks like a logic error. Even if there was a reason for the subtraction, the order should have been reversed. There's no conceivable reason for allocated_before to ever be larger than allocated_after.

@senekor senekor merged commit c8dd241 into main Feb 26, 2025
13 checks passed
@senekor senekor deleted the senekor/oqpxlnnszsqp branch February 26, 2025 19:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants