[issue12181] SIGBUS error on OpenBSD (sparc64)

Charles-François Natali report at bugs.python.org
Wed May 25 22:54:40 CEST 2011


Charles-François Natali <neologix at free.fr> added the comment:

It's an unaligned access:

addr=0x21007b72c

  case T_LONGLONG:
      v = PyLong_FromLongLong(*(PY_LONG_LONG *)addr);

sizeof(PY_LONG_LONG) == 8, but addr % 8 = 0x21007b72c % 8 == 4

----------
nosy: +charles-francois.natali

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue12181>
_______________________________________


More information about the Python-bugs-list mailing list