auto merge of #8298 : darkf/rust/fix-3948, r=pcwalton

This commit is contained in:
bors 2013-08-05 13:49:55 -07:00
commit 29099e450a

View File

@ -1041,7 +1041,7 @@ pub fn stdin() -> @Reader {
pub fn file_reader(path: &Path) -> Result<@Reader, ~str> {
let f = do path.to_str().as_c_str |pathbuf| {
do "r".as_c_str |modebuf| {
do "rb".as_c_str |modebuf| {
unsafe { libc::fopen(pathbuf, modebuf as *libc::c_char) }
}
};