[patch] fix use of uninitialized variable in

2020-10-10 Thread Yuriy M. Kaminskiy
... due to missing return after fallback to _delay_ms() when __builtin_avr_delay_cycles is not used. Regression by r2385. diff --git a/include/util/delay.h.in b/include/util/delay.h.in index 524c56f6..870eb737 100644 --- a/include/util/delay.h.in +++ b/include/util/delay.h.in @@ -285,6 +285,7 @@

Re: [patch] fix use of uninitialized variable in

2020-10-10 Thread Joerg Wunsch
As Yuriy M. Kaminskiy wrote: > ... due to missing return after fallback to _delay_ms() when > __builtin_avr_delay_cycles is not used. Well, normally, I'd like to have things like this going into a bug tracker. However, as this bug fix was pretty obvious, I just applied the patch to the tree. Tha