Skip to content

Commit 7b1724f

Browse files
committed
libstd: Revert an integer type casting
Otherwise, rustctest failed by a segv fault.
1 parent 04882d7 commit 7b1724f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/libstd/fs.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,10 @@ Indicates whether a path represents a directory.
121121
*/
122122
fn path_is_dir(p: path) -> bool {
123123
ret str::as_buf(p, {|buf|
124-
rustrt::rust_path_is_dir(buf) != 0 as ctypes::c_int
124+
// FIXME: instead of 0i32, ctypes::c_int
125+
// should be used here. but it triggers
126+
// a segv fault. Issue 1558
127+
rustrt::rust_path_is_dir(buf) != 0i32
125128
});
126129
}
127130

0 commit comments

Comments
 (0)