[pypy-svn] r46186 - pypy/branch/pypy-more-rtti-inprogress/rpython/lltypesystem

fijal at codespeak.net fijal at codespeak.net
Thu Aug 30 12:25:08 CEST 2007


Author: fijal
Date: Thu Aug 30 12:25:07 2007
New Revision: 46186

Modified:
   pypy/branch/pypy-more-rtti-inprogress/rpython/lltypesystem/rffi.py
Log:
"typo"


Modified: pypy/branch/pypy-more-rtti-inprogress/rpython/lltypesystem/rffi.py
==============================================================================
--- pypy/branch/pypy-more-rtti-inprogress/rpython/lltypesystem/rffi.py	(original)
+++ pypy/branch/pypy-more-rtti-inprogress/rpython/lltypesystem/rffi.py	Thu Aug 30 12:25:07 2007
@@ -73,7 +73,7 @@
                 if tp is CCHARP:
                     to_free = to_free + (ll_str,)
                 else:
-                    to_free = to_free = (None,)
+                    to_free = to_free + (None,)
         result = funcptr(*real_args)
         if stringpolicy == 'fullauto':
             for i, tp in unrolling_arg_tps:



More information about the Pypy-commit mailing list