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 коммит произвёл Alan Wu
Родитель aba4047955
Коммит 4b80358e5d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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