Closed issue by ackalker on void-packages repository https://github.com/void-linux/void-packages/issues/12717 Description: ### System * xuname: Void 5.1.15_1 x86_64 GenuineIntel uptodate rrrrmdFFFFFFFFF * package: vdpauinfo-1.0_3 ### Expected behavior Running `vdpauinfo` should output VDPAU capabilities without crashing. ### Actual behavior Running `vdpauinfo` on my system produces a segmentation fault without any other output. ### Steps to reproduce the behavior * While running X, in a terminal run the command `vdpauinfo` ### Additional notes * Graphics card NVIDIA GM107 [GeForce GTX 750] * Video driver nouveau I suspected that this could be a library issue, so I ran the tool again using `LD_DEBUG=libs`. The last bit of output on my system is (full output [here](https://gist.github.com/b58b979e3859d4862d96e15e06809758)): ```sh $ LD_DEBUG=libs vdpauinfo [...] 3793: calling init: /usr/lib/vdpau/libvdpau_nouveau.so.1 3793: 3793: find library=libnss_files.so.2 [0]; searching 3793: search cache=/etc/ld.so.cache 3793: trying file=/usr/lib/libnss_files.so.2 3793: 3793: 3793: calling init: /usr/lib/libnss_files.so.2 3793: Segmentation fault ``` So it looks like the crash occurs while trying to init `libnss_files.so.2`, and in any case before control is transferred to `vdpauinfo` binary. I'm wondering: could the recent `glibc` update be the culprit?