Skip to content

Commit ba34886

Browse files
committed
---
yaml --- r: 15297 b: refs/heads/try c: ab2158f h: refs/heads/master i: 15295: 1bb74ec v: v3
1 parent a6343de commit ba34886

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: f4b293f0e379291d2c2e9c56713862d5546a9e3a
5+
refs/heads/try: ab2158f070c49249b4df0fd7d5063deb27425fc3
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/src/rt/rust_uv.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,11 @@ rust_uv_loop_delete(uv_loop_t* loop) {
9898
// from a malloc with no backtrace.
9999
//
100100
// This pads our stack with some extra space before deleting the loop
101+
#ifndef __WIN32__
101102
alloca(512);
103+
#else
104+
_alloca(512);
105+
#endif
102106
uv_loop_delete(loop);
103107
}
104108

0 commit comments

Comments
 (0)