version 1.11, 2018/07/31 22:22:28
|
version 1.12, 2019/01/04 22:26:31
|
Line 5 investigation in order to write proper P
|
Line 5 investigation in order to write proper P
|
|
|
|
|
## `mpv` SIGSEGVs (strnlen(s, (size_t)-1) always returns -1) |
## `mpv` SIGSEGVs (strnlen(s, (size_t)-1) always returns -1) |
|
|
|
**UPDATE**: This was fixed by `<ryo>`, thanks! |
|
|
Just by invoking `mpv` via: |
Just by invoking `mpv` via: |
|
|
% mpv |
% mpv |
Line 88 This happens because `strnlen(s, (size_t
|
Line 91 This happens because `strnlen(s, (size_t
|
The following patch workaround the mpv problem by avoiding all |
The following patch workaround the mpv problem by avoiding all |
`strnlen(s, (size_t)-1)` calls (and just using strlen() instead): |
`strnlen(s, (size_t)-1)` calls (and just using strlen() instead): |
|
|
$NetBSD$ |
$NetBSD: aarch64_problems.mdwn,v 1.11 2018/07/31 22:22:28 leot Exp $ |
|
|
Avoid to directly call: |
Avoid to directly call: |
|
|
Line 116 The following patch workaround the mpv p
|
Line 119 The following patch workaround the mpv p
|
|
|
|
|
## Python `import requests` SIGILLs |
## Python `import requests` SIGILLs |
|
|
|
**UPDATE**: A kludge was added since py-cffi-1.11.5nb1 to avoid that. |
Doing a (please note that also `python36` is affected): |
Doing a (please note that also `python36` is affected): |
|
|
$ python2.7 -c 'import requests' |
$ python2.7 -c 'import requests' |