Author: Amaury Forgeot d'Arc <[email protected]>
Branch: more-rposix
Changeset: r76731:7e3beaacff39
Date: 2015-04-06 23:25 +0200
http://bitbucket.org/pypy/pypy/changeset/7e3beaacff39/

Log:    Fix merge.

diff --git a/rpython/rlib/rposix_stat.py b/rpython/rlib/rposix_stat.py
--- a/rpython/rlib/rposix_stat.py
+++ b/rpython/rlib/rposix_stat.py
@@ -411,6 +411,7 @@
         with lltype.scoped_alloc(STAT_STRUCT.TO) as stresult:
             arg = _as_bytes0(path)
             handle_posix_error('lstat', c_stat(arg, stresult))
+            return build_stat_result(stresult)
     else:
         traits = _preferred_traits(path)
         path = traits.as_str0(path)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to