aboutsummaryrefslogtreecommitdiff
path: root/src/megolm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/megolm.c')
-rw-r--r--src/megolm.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/megolm.c b/src/megolm.c
index a969b36..affd3cb 100644
--- a/src/megolm.c
+++ b/src/megolm.c
@@ -116,7 +116,11 @@ void megolm_advance_to(Megolm *megolm, uint32_t advance_to) {
((advance_to >> shift) - (megolm->counter >> shift)) & 0xff;
if (steps == 0) {
- continue;
+ if (advance_to < megolm->counter) {
+ steps = 0x100;
+ } else {
+ continue;
+ }
}
/* for all but the last step, we can just bump R(j) without regard