1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix condition in cb_align_pos which should return early when aligned

This commit is contained in:
Dylan Thacker-Smith 2021-03-15 00:19:08 -07:00 committed by Alan Wu
parent aba4047955
commit 4b80358e5d

View file

@ -178,7 +178,7 @@ void cb_align_pos(codeblock_t* cb, uint32_t multiple)
uint32_t rem = ((uint32_t)ptr) % multiple;
// If the pointer is already aligned, stop
if (rem != 0)
if (rem == 0)
return;
// Pad the pointer by the necessary amount to align it