-
-
Notifications
You must be signed in to change notification settings - Fork 131
gio: Use OwnedSocket
/ BorrowedSocket
for Windows APIs on GSocket
#1699
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
Changes from all commits
452a038
09112cd
7022a50
cfd7fef
36c20b2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ impl Pixbuf { | |
let bits_per_sample = bits_per_sample as usize; | ||
|
||
let n_channels = if has_alpha { 4 } else { 3 }; | ||
let last_row_len = width * ((n_channels * bits_per_sample + 7) / 8); | ||
let last_row_len = width * (n_channels * bits_per_sample).div_ceil(8); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is missing a 7 isn't it? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, why? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a +7 before and that change seemed unrelated to clippy fixes. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That |
||
|
||
let mut data: Box<T> = Box::new(data); | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually not a false positive. That code was completely broken