Skip to content

Commit

Permalink
Release 0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
toots committed Mar 18, 2024
1 parent 903675e commit 574fc32
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES
@@ -1,3 +1,7 @@
0.9.4 (2024-03-18)
=====
* Fix poll segfault.

0.9.3 (2023-07-06)
======
* Make sure sure `ready_m` is release last to prevent any exception raised
Expand Down
2 changes: 1 addition & 1 deletion dune-project
@@ -1,5 +1,5 @@
(lang dune 2.7)
(version 0.9.3)
(version 0.9.4)
(name duppy)
(source (github savonet/ocaml-duppy))
(license LGPL-2.1-only)
Expand Down
2 changes: 1 addition & 1 deletion duppy.opam
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.9.3"
version: "0.9.4"
synopsis: "Library providing monadic threads"
maintainer: ["The Savonet Team <savonet-users@lists.sourceforge.net>"]
authors: ["Romain Beauxis <toots@rastageeks.org>"]
Expand Down
2 changes: 1 addition & 1 deletion src/duppy_stubs.c
Expand Up @@ -128,7 +128,7 @@ CAMLprim value caml_poll(value _read, value _write, value _err, value _timeout)
nwrite++;
}
if (fds[n].revents & POLLERR) {
Store_field(_pread, nerr, Val_fd(fds[n].fd));
Store_field(_perr, nerr, Val_fd(fds[n].fd));
nerr++;
}
}
Expand Down

0 comments on commit 574fc32

Please sign in to comment.