mirror of
https://github.com/urbit/ares.git
synced 2024-11-22 15:08:54 +03:00
pma: declare _bt_falloc
iterator variables before start
label
This commit is contained in:
parent
5336ca7a91
commit
d4e0d983de
@ -2391,9 +2391,11 @@ _bt_falloc(BT_state *state, size_t pages)
|
||||
{
|
||||
/* walk the persistent file freelist and return a pgno with sufficient
|
||||
contiguous space for pages */
|
||||
BT_flistnode **n;
|
||||
pgno_t ret;
|
||||
start:
|
||||
BT_flistnode **n = &state->flist;
|
||||
pgno_t ret = 0;
|
||||
n = &state->flist;
|
||||
ret = 0;
|
||||
|
||||
/* first fit */
|
||||
for (; *n; n = &(*n)->next) {
|
||||
|
Loading…
Reference in New Issue
Block a user