The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #91 from talex5/fd-gc-bug

Fix accidental shadowing in ocaml_uring_get_msghdr_fds

authored by

Thomas Leonard and committed by
GitHub
07482dae 6be04428

+1 -1
+1 -1
lib/uring/uring_stubs.c
··· 545 545 int i; 546 546 for (i = n_fds - 1; i >= 0; i--) { 547 547 int fd = Val_int(fds[i]); 548 - value v_cons = caml_alloc_tuple(2); 548 + v_cons = caml_alloc_tuple(2); 549 549 Store_field(v_cons, 0, fd); 550 550 Store_field(v_cons, 1, v_list); 551 551 v_list = v_cons;