Skip to content

Commit 3abceb4

Browse files
committed
* fix macOS issue with libuv_reactor.c:1956
1 parent 13e4a76 commit 3abceb4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build-alpine.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: True Async Alpine Build
22

33
on:
44
push:
5-
branches: [build-x]
5+
branches: [xbuild-x]
66
pull_request:
7-
branches: [build-x]
7+
branches: [xbuild-x]
88

99
jobs:
1010
build-alpine:

.github/workflows/build-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: True Async Windows Build
22

33
on:
44
push:
5-
branches: [build]
5+
branches: [xbuild]
66
pull_request:
7-
branches: [build]
7+
branches: [xbuild]
88

99
jobs:
1010
build-windows:

libuv_reactor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1953,7 +1953,7 @@ static zend_async_exec_event_t * libuv_new_exec_event(
19531953
#endif
19541954

19551955
options->stdio = (uv_stdio_container_t[]) {
1956-
{ UV_IGNORE },
1956+
{ .flags = UV_IGNORE, .data = { .stream = NULL } },
19571957
{
19581958
.data.stream = (uv_stream_t*) exec->stdout_pipe,
19591959
.flags = UV_CREATE_PIPE | UV_WRITABLE_PIPE

0 commit comments

Comments
 (0)